結果

問題 No.304 鍵(1)
ユーザー papinianuspapinianus
提出日時 2016-07-28 12:42:22
言語 PHP
(8.3.4)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 48,876 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-17 00:15:48
合計ジャッジ時間 3,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
48,624 KB
testcase_01 AC 71 ms
48,116 KB
testcase_02 AC 104 ms
48,624 KB
testcase_03 AC 70 ms
48,624 KB
testcase_04 AC 84 ms
48,876 KB
testcase_05 AC 68 ms
48,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
for($i = 0; $i < 1000; $i++) {
    printf("%03d\n",$i);
    flush();
    $res = trim(fgets(STDIN));
    if($res == 'unlocked') {
        break;
    }
}
0