結果

問題 No.304 鍵(1)
ユーザー rocoderrocoder
提出日時 2017-08-21 11:44:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 273 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 10,632 KB
実行使用メモリ 24,084 KB
平均クエリ数 83.50
最終ジャッジ日時 2023-09-23 14:24:24
合計ジャッジ時間 1,800 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
23,596 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
権限があれば一括ダウンロードができます

ソースコード

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