結果

問題 No.304 鍵(1)
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-07 09:34:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 91,960 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-24 02:49:36
合計ジャッジ時間 1,740 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
87,436 KB
testcase_01 AC 97 ms
87,540 KB
testcase_02 AC 165 ms
91,960 KB
testcase_03 AC 99 ms
87,216 KB
testcase_04 AC 127 ms
91,612 KB
testcase_05 AC 96 ms
87,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for i in range(10):
    for j in range(10):
        for k in range(10):
            s = str(i)+str(j)+str(k)
            print(s, flush=True)
            t = str(input())
            if t == 'locked':
                continue
            else:
                exit()
0