結果
問題 | No.612 Move on grid |
ユーザー | ciel |
提出日時 | 2017-12-31 19:51:36 |
言語 | Crystal (1.11.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 241 bytes |
コンパイル時間 | 13,608 ms |
コンパイル使用メモリ | 297,380 KB |
実行使用メモリ | 9,184 KB |
最終ジャッジ日時 | 2024-06-30 19:19:09 |
合計ジャッジ時間 | 15,510 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
7,424 KB |
testcase_01 | WA | - |
testcase_02 | AC | 7 ms
8,544 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 178 ms
8,064 KB |
testcase_09 | AC | 137 ms
8,548 KB |
testcase_10 | WA | - |
testcase_11 | AC | 40 ms
7,680 KB |
testcase_12 | WA | - |
testcase_13 | AC | 59 ms
7,808 KB |
testcase_14 | WA | - |
testcase_15 | AC | 41 ms
9,056 KB |
testcase_16 | AC | 160 ms
8,064 KB |
testcase_17 | WA | - |
testcase_18 | AC | 136 ms
8,228 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
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 x=[1_i64]+[0_i64]*200001 t.times{|i| y=[0_i64]*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 } p x[d..e].sum%M