結果

問題 No.587 七対子
ユーザー PicklesSuperiorPicklesSuperior
提出日時 2018-10-15 04:25:35
言語 PHP
(8.3.4)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 4,138 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 31,480 KB
最終ジャッジ日時 2024-07-19 19:56:28
合計ジャッジ時間 6,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,132 KB
testcase_01 AC 35 ms
31,396 KB
testcase_02 AC 34 ms
31,196 KB
testcase_03 AC 33 ms
31,224 KB
testcase_04 AC 33 ms
31,008 KB
testcase_05 AC 34 ms
31,332 KB
testcase_06 AC 35 ms
31,148 KB
testcase_07 AC 34 ms
31,000 KB
testcase_08 AC 35 ms
31,288 KB
testcase_09 AC 35 ms
31,268 KB
testcase_10 AC 35 ms
31,056 KB
testcase_11 AC 34 ms
31,424 KB
testcase_12 AC 35 ms
31,272 KB
testcase_13 AC 36 ms
31,420 KB
testcase_14 AC 35 ms
31,256 KB
testcase_15 AC 36 ms
31,480 KB
testcase_16 AC 35 ms
31,060 KB
testcase_17 AC 34 ms
31,156 KB
testcase_18 AC 34 ms
31,168 KB
testcase_19 AC 33 ms
31,280 KB
testcase_20 AC 33 ms
31,132 KB
testcase_21 AC 36 ms
31,384 KB
testcase_22 AC 33 ms
31,160 KB
testcase_23 AC 34 ms
31,272 KB
testcase_24 AC 34 ms
31,060 KB
testcase_25 AC 35 ms
31,152 KB
testcase_26 AC 35 ms
31,276 KB
testcase_27 AC 35 ms
31,160 KB
testcase_28 AC 34 ms
31,232 KB
testcase_29 AC 35 ms
30,932 KB
testcase_30 AC 35 ms
31,152 KB
testcase_31 AC 35 ms
31,424 KB
testcase_32 AC 34 ms
31,284 KB
testcase_33 AC 34 ms
31,252 KB
testcase_34 AC 35 ms
31,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

    $input = fgets(STDIN);
    $pool = array();
    $flag = "EMPTY";
    $pool_count = 0;
    $ans;

    for($i=0 ; $i<13 ; $i++){
        for($j=0 ; $j<$pool_count ; $j++){
            if($pool[$j][0] == $input[$i]){
                $pool[$j][1] += 1;
                $flag = "IN";
                break;
            }
        }
        if($flag == "EMPTY"){
            $pool[$pool_count][0] = $input[$i];
            $pool[$pool_count][1] = 1;
            $pool_count += 1;
        }
        $flag = "EMPTY";
    }


    if($pool_count != 7){
        print("Impossible\n");
    }else{
        for($i=0 ; $i<$pool_count ; $i++){
            if($pool[$i][1] > 2){
                print "Impossible" . "\n";
                return;
            }
            if($pool[$i][1] == 1) $ans = $pool[$i][0];
        }
        print $ans . "\n";
    }
?>
0