結果

問題 No.5003 物理好きクリッカー
ユーザー trineutrontrineutron
提出日時 2021-01-03 00:56:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 441 ms / 10,000 ms
コード長 95 bytes
コンパイル時間 112 ms
実行使用メモリ 22,492 KB
スコア 452,672
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 14:17:09
合計ジャッジ時間 17,255 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 433 ms
21,832 KB
testcase_01 AC 431 ms
22,296 KB
testcase_02 AC 437 ms
21,952 KB
testcase_03 AC 435 ms
22,380 KB
testcase_04 AC 438 ms
22,364 KB
testcase_05 AC 430 ms
22,284 KB
testcase_06 AC 431 ms
22,312 KB
testcase_07 AC 431 ms
22,284 KB
testcase_08 AC 430 ms
22,228 KB
testcase_09 AC 441 ms
22,352 KB
testcase_10 AC 436 ms
22,256 KB
testcase_11 AC 428 ms
22,024 KB
testcase_12 AC 434 ms
22,264 KB
testcase_13 AC 433 ms
21,972 KB
testcase_14 AC 434 ms
21,908 KB
testcase_15 AC 429 ms
22,296 KB
testcase_16 AC 433 ms
22,364 KB
testcase_17 AC 437 ms
21,972 KB
testcase_18 AC 434 ms
21,944 KB
testcase_19 AC 434 ms
22,272 KB
testcase_20 AC 435 ms
22,080 KB
testcase_21 AC 433 ms
22,288 KB
testcase_22 AC 437 ms
22,296 KB
testcase_23 AC 434 ms
22,368 KB
testcase_24 AC 435 ms
22,164 KB
testcase_25 AC 434 ms
22,032 KB
testcase_26 AC 436 ms
22,336 KB
testcase_27 AC 435 ms
22,096 KB
testcase_28 AC 433 ms
22,192 KB
testcase_29 AC 435 ms
22,020 KB
testcase_30 AC 432 ms
22,072 KB
testcase_31 AC 431 ms
22,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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