結果

問題 No.304 鍵(1)
ユーザー 👑 KazunKazun
提出日時 2020-07-29 03:04:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 87,244 KB
実行使用メモリ 92,536 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-24 02:43:17
合計ジャッジ時間 1,713 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
87,380 KB
testcase_01 AC 97 ms
86,904 KB
testcase_02 AC 151 ms
92,536 KB
testcase_03 AC 94 ms
86,900 KB
testcase_04 AC 124 ms
91,516 KB
testcase_05 AC 94 ms
87,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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