結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
87,524 KB
testcase_01 AC 106 ms
87,112 KB
testcase_02 AC 174 ms
92,372 KB
testcase_03 AC 103 ms
87,544 KB
testcase_04 AC 128 ms
91,428 KB
testcase_05 AC 102 ms
87,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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