結果

問題 No.304 鍵(1)
ユーザー mesame3993mesame3993
提出日時 2021-11-18 15:16:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 83,268 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-17 03:06:05
合計ジャッジ時間 1,557 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,424 KB
testcase_01 AC 66 ms
70,156 KB
testcase_02 AC 129 ms
83,268 KB
testcase_03 AC 64 ms
69,244 KB
testcase_04 AC 93 ms
76,784 KB
testcase_05 AC 62 ms
70,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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