結果

問題 No.304 鍵(1)
ユーザー rocoder
提出日時 2017-08-21 11:44:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 273 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,736 KB
平均クエリ数 83.50
最終ジャッジ日時 2024-07-16 14:03:52
合計ジャッジ時間 2,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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(str(N))
    S=input ()
    if S=="unlocked":
        nd=1
    else:
        N+=1
0