結果

問題 No.305 鍵(2)
ユーザー papinianuspapinianus
提出日時 2016-09-02 13:03:12
言語 PHP
(8.3.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 599 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 49,780 KB
平均クエリ数 45.46
最終ジャッジ日時 2024-07-17 00:22:29
合計ジャッジ時間 4,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 60 ms
48,500 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 58 ms
48,880 KB
testcase_05 WA -
testcase_06 AC 60 ms
48,880 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 57 ms
48,880 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$digit = [0,1,2,3,4,5,6,7,8,9];
$trial = array_fill(0, 10, 0);
$pos = 0;

echo implode("", $trial).PHP_EOL;
flush();
list($prev, $stat) = explode(" ", trim(fgets(STDIN)));
$trial[$pos] = ($trial[$pos] + 1) % 10;
while($stat == "locked" && $pos < 10) {
    echo implode("", $trial).PHP_EOL;
    flush();
    list($n, $stat) = explode(" ", trim(fgets(STDIN)));
    if($n > $prev) {
        $pos++;
        $prev = $n;
    } else if ($prev > $n) {
        $trial[$pos] = ($trial[$pos] + 9) % 10;
        $pos++;
    } else {
        $prev = $n;
    }
    $trial[$pos] = ($trial[$pos] + 1) % 10;
}
0