結果

問題 No.612 Move on grid
ユーザー %20%20
提出日時 2017-12-13 03:12:28
言語 cLay
(20240714-1)
結果
AC  
実行時間 113 ms / 2,500 ms
コード長 208 bytes
コンパイル時間 2,981 ms
コンパイル使用メモリ 177,300 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-07-05 12:47:50
合計ジャッジ時間 5,221 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
42,624 KB
testcase_01 AC 46 ms
42,752 KB
testcase_02 AC 47 ms
42,752 KB
testcase_03 AC 58 ms
42,496 KB
testcase_04 AC 107 ms
42,624 KB
testcase_05 AC 98 ms
42,624 KB
testcase_06 AC 96 ms
42,624 KB
testcase_07 AC 113 ms
42,624 KB
testcase_08 AC 97 ms
42,752 KB
testcase_09 AC 96 ms
42,752 KB
testcase_10 AC 79 ms
42,624 KB
testcase_11 AC 61 ms
42,752 KB
testcase_12 AC 82 ms
42,624 KB
testcase_13 AC 67 ms
42,752 KB
testcase_14 AC 88 ms
42,624 KB
testcase_15 AC 61 ms
42,624 KB
testcase_16 AC 94 ms
42,624 KB
testcase_17 AC 67 ms
42,624 KB
testcase_18 AC 90 ms
42,624 KB
testcase_19 AC 78 ms
42,624 KB
testcase_20 AC 95 ms
42,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll T,a[6],d,e;
mint D[501][20041],z;
{
	rd(T,a(3),d,e);
	a[3..5]=-a[0..];
	D[0][10020]=1;
	rep(i,T){
		rep(j,20,20021){
			rep(k,6){
				D[i+1][j+a[k]]+=D[i][j];
			}
		}
	}
	z+=D[T][10020+(d..e)];
	wt(z);
}
0