結果

問題 No.304 鍵(1)
ユーザー peta727peta727
提出日時 2016-05-12 17:23:50
言語 PHP
(8.3.4)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 2,616 ms
コンパイル使用メモリ 31,760 KB
実行使用メモリ 49,084 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-16 23:42:06
合計ジャッジ時間 3,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
48,692 KB
testcase_01 AC 73 ms
48,628 KB
testcase_02 AC 104 ms
48,992 KB
testcase_03 AC 69 ms
49,084 KB
testcase_04 AC 88 ms
48,912 KB
testcase_05 AC 70 ms
48,728 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    for ($i = 0; $i < 10; $i++) {
        for ($j = 0; $j < 10; $j++) {
            for ($k = 0; $k < 10; $k++) {
                echo $i.$j.$k . PHP_EOL;
                $input = trim(fgets(STDIN));
                if ($input == "unlocked") {
                    exit;
                }
            }
        }
    }
0