結果

問題 No.5003 物理好きクリッカー
ユーザー koyumeishikoyumeishi
提出日時 2018-12-04 13:06:03
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 429 ms / 10,000 ms
コード長 94 bytes
コンパイル時間 369 ms
実行使用メモリ 22,540 KB
スコア 452,672
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 08:22:17
合計ジャッジ時間 16,781 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 414 ms
22,172 KB
testcase_01 AC 419 ms
21,960 KB
testcase_02 AC 415 ms
21,956 KB
testcase_03 AC 423 ms
21,724 KB
testcase_04 AC 422 ms
22,148 KB
testcase_05 AC 428 ms
22,244 KB
testcase_06 AC 421 ms
22,156 KB
testcase_07 AC 417 ms
22,344 KB
testcase_08 AC 415 ms
22,272 KB
testcase_09 AC 417 ms
22,176 KB
testcase_10 AC 412 ms
21,884 KB
testcase_11 AC 411 ms
22,304 KB
testcase_12 AC 417 ms
22,176 KB
testcase_13 AC 415 ms
22,300 KB
testcase_14 AC 429 ms
22,100 KB
testcase_15 AC 419 ms
21,964 KB
testcase_16 AC 418 ms
22,292 KB
testcase_17 AC 412 ms
21,964 KB
testcase_18 AC 424 ms
22,128 KB
testcase_19 AC 412 ms
21,912 KB
testcase_20 AC 416 ms
21,928 KB
testcase_21 AC 418 ms
22,064 KB
testcase_22 AC 415 ms
22,100 KB
testcase_23 AC 416 ms
22,232 KB
testcase_24 AC 422 ms
22,168 KB
testcase_25 AC 418 ms
22,236 KB
testcase_26 AC 410 ms
22,060 KB
testcase_27 AC 412 ms
22,272 KB
testcase_28 AC 410 ms
21,832 KB
testcase_29 AC 416 ms
22,092 KB
testcase_30 AC 415 ms
22,328 KB
testcase_31 AC 413 ms
22,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()

for i in range(n):
  print('click', flush=True)
  res = input()
0