結果
問題 | No.304 鍵(1) |
ユーザー | rocoder |
提出日時 | 2017-08-21 11:44:09 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
27,096 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
ソースコード
# 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