結果

問題 No.494 yukicoder
ユーザー tazakkytazakky
提出日時 2017-09-12 13:20:39
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 1,305 ms
コンパイル使用メモリ 31,060 KB
実行使用メモリ 31,016 KB
最終ジャッジ日時 2024-11-07 17:17:02
合計ジャッジ時間 2,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
30,752 KB
testcase_01 AC 43 ms
30,736 KB
testcase_02 AC 43 ms
30,768 KB
testcase_03 AC 43 ms
30,992 KB
testcase_04 AC 43 ms
30,816 KB
testcase_05 AC 44 ms
30,704 KB
testcase_06 AC 45 ms
31,016 KB
testcase_07 AC 42 ms
30,972 KB
testcase_08 AC 43 ms
30,836 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $input = trim(fgets(STDIN));
    $memo = "yukicoder";
    
    for($i = 0; $i <= 8; $i++){
        if(strpos($input, $memo[$i]) === false){
          echo $memo[$i];
        }
    }

?>
0