結果

問題 No.304 鍵(1)
ユーザー ohanaohana
提出日時 2023-10-23 14:43:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 2,987 ms
コンパイル使用メモリ 81,636 KB
実行使用メモリ 82,336 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-10-23 14:47:40
合計ジャッジ時間 9,476 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,940 KB
testcase_01 AC 64 ms
69,940 KB
testcase_02 AC 131 ms
82,336 KB
testcase_03 AC 68 ms
69,940 KB
testcase_04 AC 95 ms
77,524 KB
testcase_05 AC 66 ms
69,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = 1000

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