結果
問題 | No.496 ワープクリスタル (給料日前編) |
ユーザー | tails |
提出日時 | 2017-03-24 22:35:05 |
言語 | Perl (5.38.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 274 bytes |
コンパイル時間 | 350 ms |
コンパイル使用メモリ | 6,816 KB |
実行使用メモリ | 7,680 KB |
最終ジャッジ日時 | 2024-07-06 03:11:37 |
合計ジャッジ時間 | 22,194 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
6,816 KB |
testcase_01 | AC | 8 ms
6,940 KB |
testcase_02 | AC | 8 ms
6,940 KB |
testcase_03 | AC | 8 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 9 ms
6,944 KB |
testcase_06 | AC | 118 ms
7,552 KB |
testcase_07 | AC | 7 ms
6,940 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 33 ms
6,940 KB |
testcase_11 | AC | 32 ms
6,944 KB |
testcase_12 | AC | 137 ms
6,940 KB |
testcase_13 | AC | 228 ms
6,944 KB |
testcase_14 | AC | 439 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 497 ms
6,944 KB |
testcase_19 | WA | - |
testcase_20 | AC | 346 ms
7,040 KB |
testcase_21 | AC | 133 ms
6,944 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
コンパイルメッセージ
Name "main::n" used only once: possible typo at Main.pl line 1. Main.pl syntax OK
ソースコード
($gx,$gy,$n,$f)=glob<>; @a=(<>,"0 1 $f","1 0 $f"); for$y(0..$gy){ for$x(0..$gx){ $d{$y,$x}=$x+$y&&1e9; for(@a){ ($xi,$yi,$ci)=glob; $xs=$x-$xi; $ys=$y-$yi; $d{$y,$x}=$d{$ys,$xs}+$ci if $ys>=0 && $xs>=0 && $d{$y,$x}>$d{$ys,$xs}+$ci; } } } print$d{$gy,$gx}