結果

問題 No.429 CupShuffle
ユーザー tailstails
提出日時 2016-10-03 00:03:41
言語 Perl
(5.38.2)
結果
AC  
実行時間 776 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 62,484 KB
最終ジャッジ日時 2024-06-06 04:06:32
合計ジャッジ時間 3,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,272 KB
testcase_01 AC 8 ms
6,016 KB
testcase_02 AC 7 ms
5,888 KB
testcase_03 AC 7 ms
6,016 KB
testcase_04 AC 10 ms
6,144 KB
testcase_05 AC 7 ms
6,016 KB
testcase_06 AC 11 ms
6,400 KB
testcase_07 AC 11 ms
6,400 KB
testcase_08 AC 7 ms
6,016 KB
testcase_09 AC 11 ms
6,400 KB
testcase_10 AC 74 ms
11,520 KB
testcase_11 AC 776 ms
62,352 KB
testcase_12 AC 612 ms
62,484 KB
testcase_13 AC 682 ms
62,484 KB
testcase_14 AC 660 ms
62,480 KB
testcase_15 AC 8 ms
5,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($n,$k,$x)=glob<>;
$a[$_]=[glob<>]for 1..$k;
@c=(0,glob<>);
@d=0..$n;
@d[@$_]=@d[@$_[1,0]]for@a[1..$x-1];
@c[@$_]=@c[@$_[1,0]]for@a[reverse$x+1..$k];
print"@{[grep$c[$_]-$d[$_],1..$n]}";
0