結果

問題 No.304 鍵(1)
ユーザー 👑 KazunKazun
提出日時 2020-07-29 03:04:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 81,248 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-17 02:50:08
合計ジャッジ時間 1,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
68,320 KB
testcase_01 AC 69 ms
69,344 KB
testcase_02 AC 131 ms
81,248 KB
testcase_03 AC 65 ms
68,576 KB
testcase_04 AC 98 ms
76,384 KB
testcase_05 AC 64 ms
68,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k=0
t=True
while t:
    print(str(k).zfill(3),flush=True)
    if input()=="unlocked":
        t=False        
    k+=1
0