結果

問題 No.304 鍵(1)
ユーザー ohanaohana
提出日時 2023-10-23 14:43:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 82,716 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-09-22 10:07:01
合計ジャッジ時間 1,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
68,832 KB
testcase_01 AC 65 ms
69,752 KB
testcase_02 AC 127 ms
82,716 KB
testcase_03 AC 65 ms
71,084 KB
testcase_04 AC 93 ms
77,896 KB
testcase_05 AC 63 ms
69,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = 1000

for i in range(n):
    print("0" * (3 - len(str(i))) + str(i))
    if input() == "unlocked":
        break
0