結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 405 ms
22,136 KB
testcase_01 AC 388 ms
22,212 KB
testcase_02 AC 411 ms
21,956 KB
testcase_03 AC 411 ms
22,008 KB
testcase_04 AC 407 ms
22,132 KB
testcase_05 AC 387 ms
22,160 KB
testcase_06 AC 402 ms
22,224 KB
testcase_07 AC 399 ms
22,220 KB
testcase_08 AC 428 ms
22,248 KB
testcase_09 AC 382 ms
21,952 KB
testcase_10 AC 393 ms
22,088 KB
testcase_11 AC 398 ms
22,276 KB
testcase_12 AC 387 ms
22,240 KB
testcase_13 AC 385 ms
22,076 KB
testcase_14 AC 401 ms
22,024 KB
testcase_15 AC 399 ms
22,224 KB
testcase_16 AC 387 ms
22,448 KB
testcase_17 AC 396 ms
22,172 KB
testcase_18 AC 391 ms
22,304 KB
testcase_19 AC 410 ms
22,436 KB
testcase_20 AC 408 ms
22,408 KB
testcase_21 AC 404 ms
22,076 KB
testcase_22 AC 407 ms
22,352 KB
testcase_23 AC 388 ms
22,348 KB
testcase_24 AC 408 ms
22,352 KB
testcase_25 AC 391 ms
22,056 KB
testcase_26 AC 396 ms
21,764 KB
testcase_27 AC 387 ms
22,360 KB
testcase_28 AC 390 ms
22,156 KB
testcase_29 AC 404 ms
22,068 KB
testcase_30 AC 387 ms
22,216 KB
testcase_31 AC 407 ms
22,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#! /usr/bin/env python3
n = int(input())
s = input()
for i in range(n):
    
    print('click')
    s = input()
0