結果

問題 No.548 国士無双
ユーザー PicklesSuperiorPicklesSuperior
提出日時 2018-10-13 04:08:08
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,823 bytes
コンパイル時間 4,294 ms
コンパイル使用メモリ 30,872 KB
実行使用メモリ 31,528 KB
最終ジャッジ日時 2024-09-17 14:53:20
合計ジャッジ時間 3,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,260 KB
testcase_01 AC 36 ms
31,440 KB
testcase_02 AC 37 ms
31,356 KB
testcase_03 AC 37 ms
31,196 KB
testcase_04 AC 38 ms
31,528 KB
testcase_05 AC 38 ms
31,124 KB
testcase_06 AC 38 ms
31,448 KB
testcase_07 AC 37 ms
31,216 KB
testcase_08 AC 37 ms
30,936 KB
testcase_09 AC 37 ms
31,320 KB
testcase_10 AC 36 ms
30,936 KB
testcase_11 AC 36 ms
31,168 KB
testcase_12 AC 37 ms
31,236 KB
testcase_13 AC 35 ms
31,472 KB
testcase_14 AC 35 ms
30,932 KB
testcase_15 AC 35 ms
31,248 KB
testcase_16 AC 35 ms
31,284 KB
testcase_17 AC 35 ms
31,236 KB
testcase_18 AC 36 ms
31,092 KB
testcase_19 AC 35 ms
31,388 KB
testcase_20 AC 35 ms
31,256 KB
testcase_21 AC 36 ms
31,488 KB
testcase_22 AC 36 ms
31,308 KB
testcase_23 AC 36 ms
30,948 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $input = fgets(STDIN);
    $thirteen = array_fill(0,13,0);
    $ans;
    $sample = array("a","b","c","d","e","f","g","h","i","j","k","l","m");
    $count = 0;
    
    /*
    for($i=0;$i<13;$i++){
        print($thirteen[$i] . "\n");
    }
    print("\n");
    */
    
    for($i = 0;$i < 13;$i++){
        switch($input[$i]){
            case "a":
                $thirteen[0] += 1;
                break;
            case "b":
                $thirteen[1] += 1;
                break;
            case "c":
                $thirteen[2] += 1;
                break;
            case "d":
                $thirteen[3] += 1;
                break;
            case "e":
                $thirteen[4] += 1;
                break;
            case "f":
                $thirteen[5] += 1;
                break;
            case "g":
                $thirteen[6] += 1;
                break;
            case "h":
                $thirteen[7] += 1;
                break;
            case "i":
                $thirteen[8] += 1;
                break;
            case "j":
                $thirteen[9] += 1;
                break;
            case "k":
                $thirteen[10] += 1;
                break;
            case "l":
                $thirteen[11] += 1;
                break;
            case "m":
                $thirteen[12] += 1;
                break;
        }
    }
    
    /*
    for($i=0;$i<13;$i++){
        print($thirteen[$i] . "\n");
    }
    */

    for($i = 0;$i < 13;$i++){
        if($thirteen[$i] == 0){
            $ans = $sample[$i];
            $count += 1;
        }
    }

    if($count == 0){
        foreach($sample as $elem){
            print($elem . "\n");
        }
    }else if($count == 1){
        print $ans . "\n";
    }else{
        print "Impossible\n";
    }
?>
0