12 06 2008 cpp topcoder Tweet
forを0から回したい時にレンジの都合で負になってしまう場合maxで評価するとよい
for(int i=max(0,k);i<vectors.length();i+)
ふむふむ。