結果

問題 No.612 Move on grid
ユーザー cielciel
提出日時 2017-12-31 20:19:09
言語 Crystal
(1.11.2)
結果
AC  
実行時間 172 ms / 2,500 ms
コード長 283 bytes
コンパイル時間 12,644 ms
コンパイル使用メモリ 296,884 KB
実行使用メモリ 9,312 KB
最終ジャッジ日時 2024-06-30 19:18:08
合計ジャッジ時間 15,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,544 KB
testcase_01 AC 7 ms
7,424 KB
testcase_02 AC 7 ms
8,800 KB
testcase_03 AC 30 ms
8,064 KB
testcase_04 AC 171 ms
8,320 KB
testcase_05 AC 169 ms
8,320 KB
testcase_06 AC 168 ms
8,064 KB
testcase_07 AC 169 ms
8,192 KB
testcase_08 AC 172 ms
8,064 KB
testcase_09 AC 131 ms
7,680 KB
testcase_10 AC 87 ms
7,808 KB
testcase_11 AC 37 ms
8,064 KB
testcase_12 AC 111 ms
7,936 KB
testcase_13 AC 57 ms
9,312 KB
testcase_14 AC 136 ms
8,064 KB
testcase_15 AC 41 ms
7,680 KB
testcase_16 AC 165 ms
8,064 KB
testcase_17 AC 64 ms
7,680 KB
testcase_18 AC 136 ms
8,064 KB
testcase_19 AC 95 ms
8,192 KB
testcase_20 AC 131 ms
8,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env crystal
M=10**9+7
t,a,b,c,d,e=ARGF.gets_to_end.split.map(&.to_i)
w=[a.abs,b.abs,c.abs].max
r=0_i64
x=[1_i64]+[r]*200001
t.times{|i|
	y=[r]*200002
	(-w*-~i..w*-~i).map{|j|
		y[j]=(x[j-a]+x[j+a]+x[j-b]+x[j+b]+x[j-c]+x[j+c])%M
	}
	x=y
}
(d..e).map{|i|r=(r+x[i])%M}
puts r
0