結果

問題 No.304 鍵(1)
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-07 09:34:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 83,676 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-17 02:56:12
合計ジャッジ時間 1,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,116 KB
testcase_01 AC 68 ms
70,648 KB
testcase_02 AC 132 ms
83,676 KB
testcase_03 AC 70 ms
71,176 KB
testcase_04 AC 97 ms
78,020 KB
testcase_05 AC 65 ms
70,420 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