結果

問題 No.2708 Jewel holder
ユーザー 👑 p-adicp-adic
提出日時 2024-04-04 21:44:02
言語 cLay
(20240714-1)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 3,034 ms
コンパイル使用メモリ 179,068 KB
実行使用メモリ 19,400 KB
最終ジャッジ日時 2024-10-01 00:34:19
合計ジャッジ時間 3,439 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,988 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,984 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 3 ms
6,948 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 6 ms
9,088 KB
testcase_09 AC 5 ms
10,188 KB
testcase_10 AC 6 ms
12,228 KB
testcase_11 AC 6 ms
11,712 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 7 ms
12,100 KB
testcase_14 AC 5 ms
9,408 KB
testcase_15 AC 8 ms
13,128 KB
testcase_16 AC 4 ms
8,768 KB
testcase_17 AC 15 ms
19,400 KB
testcase_18 AC 11 ms
14,720 KB
testcase_19 AC 10 ms
16,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@H,@W,L=2d4,a[H][W][L]{{{0,1}}},d;string@A[H];rep(i,H)rep(j,W)rep(c,L)d=A[i][j]=='o'?c-1:A[i][j]=='x'?c+1:-1,a[i][j][c]+=0<=d<L?(i&&A[i-1][j]!='#'?a[i-1][j][d]:0)+(j&&A[i][j-1]!='#'?a[i][j-1][d]:0):0;wt(sum[c,0,L](a[H-1][W-1][c]));
0