結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 419 ms
22,372 KB
testcase_01 AC 418 ms
22,192 KB
testcase_02 AC 446 ms
22,112 KB
testcase_03 AC 415 ms
22,432 KB
testcase_04 AC 411 ms
21,960 KB
testcase_05 AC 397 ms
22,564 KB
testcase_06 AC 387 ms
22,328 KB
testcase_07 AC 397 ms
22,264 KB
testcase_08 AC 388 ms
22,440 KB
testcase_09 AC 443 ms
22,216 KB
testcase_10 AC 415 ms
22,492 KB
testcase_11 AC 397 ms
21,988 KB
testcase_12 AC 410 ms
22,416 KB
testcase_13 AC 414 ms
22,456 KB
testcase_14 AC 414 ms
22,444 KB
testcase_15 AC 416 ms
22,076 KB
testcase_16 AC 419 ms
22,216 KB
testcase_17 AC 412 ms
22,332 KB
testcase_18 AC 385 ms
22,228 KB
testcase_19 AC 415 ms
22,248 KB
testcase_20 AC 418 ms
22,432 KB
testcase_21 AC 416 ms
22,440 KB
testcase_22 AC 417 ms
22,208 KB
testcase_23 AC 407 ms
22,428 KB
testcase_24 AC 399 ms
22,260 KB
testcase_25 AC 396 ms
22,452 KB
testcase_26 AC 396 ms
22,384 KB
testcase_27 AC 390 ms
22,436 KB
testcase_28 AC 394 ms
22,300 KB
testcase_29 AC 396 ms
22,256 KB
testcase_30 AC 412 ms
22,148 KB
testcase_31 AC 390 ms
22,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, s):
    return ['click' for i in range(n)]


def main():
    n = int(input())
    s = input()

    actions = solve(n, s)

    for action in actions:
        print(action, flush=True)
        result = input()


if __name__ == "__main__":
    main()
0