結果

問題 No.200 カードファイト!
ユーザー tailstails
提出日時 2015-04-29 00:52:23
言語 Perl
(5.38.2)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 28 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-23 09:04:26
合計ジャッジ時間 984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::c" used only once: possible typo at Main.pl line 4.
Main.pl syntax OK

ソースコード

diff #

$n=<>;
$a=<>;
@b1=sort{$a<=>$b}<>=~/\d+/g;
$c=<>;
@d1=sort{$b<=>$a}<>=~/\d+/g;
$\=0;

for(1..$n){
	@b=@b1 if!@b;
	@d=@d1 if!@d;
	if(@b<@d){
		$b=pop@b;
		$\++if@r=grep{$b>$d[$_]}0..@d-1;
		splice(@d,$r[0],1);
	}else{
		$d=pop@d;
		$\++if@r=grep{$b[$_]>$d}0..@b-1;
		splice(@b,$r[0],1);
	}
}
print
0