結果

問題 No.304 鍵(1)
ユーザー mesame3993mesame3993
提出日時 2021-11-18 15:16:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 81,732 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-17 03:06:14
合計ジャッジ時間 1,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
69,156 KB
testcase_01 AC 71 ms
69,636 KB
testcase_02 AC 128 ms
81,732 KB
testcase_03 AC 66 ms
69,476 KB
testcase_04 AC 94 ms
77,556 KB
testcase_05 AC 65 ms
69,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  n = 0
  s = 'locked'
  while s == 'locked':
    print(str(n).zfill(3))
    n += 1
    s = input()
main()
0