結果

問題 No.1231 Make a Multiple of Ten
ユーザー tailstails
提出日時 2020-09-18 21:41:20
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,191 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 47,232 KB
最終ジャッジ日時 2024-06-23 13:41:23
合計ジャッジ時間 7,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,816 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 AC 511 ms
24,960 KB
testcase_05 AC 458 ms
22,400 KB
testcase_06 AC 185 ms
12,416 KB
testcase_07 AC 551 ms
25,728 KB
testcase_08 AC 263 ms
17,024 KB
testcase_09 AC 113 ms
9,728 KB
testcase_10 AC 492 ms
23,296 KB
testcase_11 AC 603 ms
27,008 KB
testcase_12 AC 1,122 ms
45,440 KB
testcase_13 AC 1,191 ms
47,232 KB
testcase_14 AC 7 ms
5,888 KB
testcase_15 AC 1,182 ms
47,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

@b=(0,(-<>)x9);
for$a(glob<>){
	@b=map{$j=($_-$a)%10;$b[$_]>$b[$j]?$b[$_]:$b[$j]+1}0..9;
}
print$b[0]+0;
0