結果

問題 No.1650 Moving Coins
ユーザー tailstails
提出日時 2021-08-21 23:55:07
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,075 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 81,048 KB
最終ジャッジ日時 2024-10-15 15:00:26
合計ジャッジ時間 16,921 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,760 KB
testcase_01 AC 7 ms
5,760 KB
testcase_02 AC 8 ms
5,760 KB
testcase_03 AC 9 ms
5,888 KB
testcase_04 AC 8 ms
6,144 KB
testcase_05 AC 8 ms
6,016 KB
testcase_06 AC 8 ms
6,016 KB
testcase_07 AC 8 ms
6,016 KB
testcase_08 AC 575 ms
45,716 KB
testcase_09 AC 474 ms
43,816 KB
testcase_10 AC 564 ms
47,176 KB
testcase_11 AC 525 ms
47,848 KB
testcase_12 AC 276 ms
28,748 KB
testcase_13 AC 344 ms
29,624 KB
testcase_14 AC 450 ms
42,368 KB
testcase_15 AC 287 ms
23,596 KB
testcase_16 AC 585 ms
51,500 KB
testcase_17 AC 583 ms
52,572 KB
testcase_18 AC 746 ms
58,980 KB
testcase_19 AC 974 ms
80,684 KB
testcase_20 AC 1,075 ms
81,048 KB
testcase_21 AC 932 ms
80,920 KB
testcase_22 AC 1,007 ms
81,032 KB
testcase_23 AC 977 ms
80,904 KB
testcase_24 AC 9 ms
6,656 KB
testcase_25 AC 9 ms
6,272 KB
testcase_26 AC 950 ms
80,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
@a=(0,glob<>);
@b=(0,glob<>);
$m+=abs($a[$_]-=$b[$_])for 1..$n;
print"$m\n";
print"$_ L\n"x$a[$_]for 1..$n;
print"$_ R\n"x-$a[$_]for reverse 1..$n;
0