結果

問題 No.304 鍵(1)
ユーザー mesame3993mesame3993
提出日時 2021-11-18 15:16:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 86,896 KB
実行使用メモリ 91,612 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-24 03:01:20
合計ジャッジ時間 1,607 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
87,084 KB
testcase_01 AC 91 ms
86,680 KB
testcase_02 AC 149 ms
91,612 KB
testcase_03 AC 93 ms
86,708 KB
testcase_04 AC 119 ms
91,440 KB
testcase_05 AC 93 ms
87,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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