結果
| 問題 | No.200 カードファイト! |
| コンテスト | |
| ユーザー |
👑 tails
|
| 提出日時 | 2015-04-29 00:52:23 |
| 言語 | Perl (5.42.1) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 296 bytes |
| 記録 | |
| コンパイル時間 | 90 ms |
| コンパイル使用メモリ | 7,972 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-04 01:14:09 |
| 合計ジャッジ時間 | 1,290 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
コンパイルメッセージ
Name "main::c" used only once: possible typo at Main.pl line 4. Main.pl syntax OK
ソースコード
$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
tails