結果

問題 No.304 鍵(1)
コンテスト
ユーザー gorugo30
提出日時 2021-02-23 20:53:12
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 151 ms / 2,000 ms
+ 2µs
コード長 240 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 232 ms
コンパイル使用メモリ 95,472 KB
実行使用メモリ 83,456 KB
平均クエリ数 309.17
最終ジャッジ日時 2026-08-15 00:45:37
合計ジャッジ時間 1,778 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

S = "locked"
i = 0
while not S.startswith("unlocked"):
    if i < 10:
        print("00" + str(i), flush = True)
    elif i < 100:
        print("0" + str(i), flush = True)
    else:
        print(i, flush = True)
    i += 1
    S = input()
0