結果

問題 No.612 Move on grid
ユーザー cielciel
提出日時 2020-02-09 01:13:25
言語 Crystal
(1.11.2)
結果
AC  
実行時間 184 ms / 2,500 ms
コード長 257 bytes
コンパイル時間 12,421 ms
コンパイル使用メモリ 298,064 KB
実行使用メモリ 9,448 KB
最終ジャッジ日時 2024-06-30 20:04:06
合計ジャッジ時間 15,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,424 KB
testcase_01 AC 6 ms
7,680 KB
testcase_02 AC 7 ms
8,156 KB
testcase_03 AC 33 ms
8,540 KB
testcase_04 AC 167 ms
8,192 KB
testcase_05 AC 184 ms
8,064 KB
testcase_06 AC 184 ms
8,064 KB
testcase_07 AC 169 ms
8,192 KB
testcase_08 AC 177 ms
9,188 KB
testcase_09 AC 144 ms
7,680 KB
testcase_10 AC 86 ms
8,192 KB
testcase_11 AC 38 ms
8,804 KB
testcase_12 AC 115 ms
9,448 KB
testcase_13 AC 56 ms
8,064 KB
testcase_14 AC 139 ms
8,064 KB
testcase_15 AC 41 ms
8,064 KB
testcase_16 AC 173 ms
8,064 KB
testcase_17 AC 58 ms
7,680 KB
testcase_18 AC 136 ms
8,192 KB
testcase_19 AC 97 ms
8,232 KB
testcase_20 AC 132 ms
8,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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}
p r
0