結果

問題 No.5003 物理好きクリッカー
ユーザー nebukuro09nebukuro09
提出日時 2018-12-01 06:18:55
言語 Python2
(2.7.18)
結果
AC  
実行時間 361 ms / 10,000 ms
コード長 126 bytes
コンパイル時間 106 ms
実行使用メモリ 22,032 KB
スコア 452,672
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 07:31:09
合計ジャッジ時間 13,970 ms
ジャッジサーバーID
(参考情報)
judge12 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
21,576 KB
testcase_01 AC 350 ms
21,540 KB
testcase_02 AC 349 ms
21,900 KB
testcase_03 AC 349 ms
21,540 KB
testcase_04 AC 354 ms
21,888 KB
testcase_05 AC 348 ms
21,564 KB
testcase_06 AC 351 ms
21,888 KB
testcase_07 AC 356 ms
21,948 KB
testcase_08 AC 355 ms
21,804 KB
testcase_09 AC 352 ms
21,360 KB
testcase_10 AC 350 ms
21,744 KB
testcase_11 AC 354 ms
21,372 KB
testcase_12 AC 353 ms
21,408 KB
testcase_13 AC 347 ms
21,540 KB
testcase_14 AC 353 ms
21,888 KB
testcase_15 AC 352 ms
21,876 KB
testcase_16 AC 351 ms
21,888 KB
testcase_17 AC 354 ms
21,900 KB
testcase_18 AC 349 ms
21,468 KB
testcase_19 AC 350 ms
21,540 KB
testcase_20 AC 350 ms
21,396 KB
testcase_21 AC 352 ms
21,912 KB
testcase_22 AC 361 ms
21,552 KB
testcase_23 AC 351 ms
21,900 KB
testcase_24 AC 351 ms
21,888 KB
testcase_25 AC 354 ms
21,912 KB
testcase_26 AC 356 ms
21,696 KB
testcase_27 AC 351 ms
21,708 KB
testcase_28 AC 351 ms
21,552 KB
testcase_29 AC 351 ms
21,396 KB
testcase_30 AC 353 ms
21,360 KB
testcase_31 AC 351 ms
21,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = int(raw_input())
C = raw_input()

for _ in xrange(N):
    print "click"
    sys.stdout.flush()
    raw_input()
0