結果

問題 No.421 しろくろチョコレート
ユーザー %20%20
提出日時 2018-01-13 12:06:06
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-06 09:30:50
合計ジャッジ時間 12,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 202 ms
6,940 KB
testcase_02 AC 42 ms
6,940 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 26 ms
6,940 KB
testcase_05 AC 28 ms
6,944 KB
testcase_06 AC 12 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 34 ms
6,940 KB
testcase_09 AC 17 ms
6,944 KB
testcase_10 AC 15 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 7 ms
6,940 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 6 ms
6,944 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 7 ms
6,944 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 8 ms
6,940 KB
testcase_24 AC 8 ms
6,940 KB
testcase_25 AC 7 ms
6,940 KB
testcase_26 AC 7 ms
6,944 KB
testcase_27 AC 6 ms
6,944 KB
testcase_28 AC 333 ms
6,944 KB
testcase_29 AC 490 ms
6,940 KB
testcase_30 AC 351 ms
6,940 KB
testcase_31 AC 795 ms
6,940 KB
testcase_32 AC 429 ms
6,940 KB
testcase_33 AC 348 ms
6,940 KB
testcase_34 AC 18 ms
6,944 KB
testcase_35 AC 22 ms
6,940 KB
testcase_36 AC 106 ms
6,940 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 75 ms
6,944 KB
testcase_40 WA -
testcase_41 AC 28 ms
6,944 KB
testcase_42 AC 21 ms
6,948 KB
testcase_43 AC 80 ms
6,944 KB
testcase_44 WA -
testcase_45 AC 29 ms
6,940 KB
testcase_46 AC 26 ms
6,940 KB
testcase_47 AC 141 ms
6,944 KB
testcase_48 AC 490 ms
6,940 KB
testcase_49 AC 67 ms
6,944 KB
testcase_50 AC 38 ms
6,944 KB
testcase_51 WA -
testcase_52 AC 98 ms
6,940 KB
testcase_53 AC 22 ms
6,940 KB
testcase_54 AC 49 ms
6,944 KB
testcase_55 AC 19 ms
6,944 KB
testcase_56 AC 16 ms
6,940 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 7 ms
6,940 KB
testcase_63 AC 7 ms
6,940 KB
testcase_64 AC 9 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::H" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($H,$W)=glob<>;
$_=join'',map s/.*/.$&./r,'.'x$W.$/,<>,'.'x$W.$/;
++$W;
$%+=100while
	s/\w(.{$W})\.\w\.(.{$W})\./.$1...$2./s||
	s/\.(.{$W})\w\w\.(.{$W})\./.$1...$2./s||
	s/\.(.{$W})\.\w\w(.{$W})\./.$1...$2./s||
	s/\.(.{$W})\.\w\.(.{$W})\w/.$1...$2./s||
	s/\w(.{$W}.)?\w/.$1./s;
print$%+=($b=y/b//)<($w=y/w//)?9*$b+$w:9*$w+$b
0