結果

問題 No.304 鍵(1)
ユーザー rocoder
提出日時 2017-06-18 10:36:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 268 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,736 KB
平均クエリ数 83.50
最終ジャッジ日時 2024-07-16 13:52:49
合計ジャッジ時間 1,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 RE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

# your code goes here
nd=0
N=0
while nd==0:
    if N<99:
        Ns=str(N)
        if N>9:
            Ns="0"+Ns
        else:
            Ns="00"+Ns
        print (Ns)
    else:
        print(N)
    S=input ()
    if S=="unlocked":
        nd=1
    else:
        N+=1
0