結果

問題 No.200 カードファイト!
ユーザー tails
提出日時 2015-04-29 00:45:36
言語 Perl
(5.40.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-15 08:59:02
合計ジャッジ時間 1,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::i" used only once: possible typo at Main.pl line 8.
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;
$win=0;

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