結果

問題 No.5003 物理好きクリッカー
ユーザー jj1gujjj1guj
提出日時 2020-06-05 18:20:17
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 813 ms
実行使用メモリ 21,996 KB
スコア 313,993
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 11:41:34
合計ジャッジ時間 4,901 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 41 ms
21,684 KB
testcase_03 AC 40 ms
21,888 KB
testcase_04 WA -
testcase_05 AC 40 ms
21,540 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 40 ms
21,552 KB
testcase_09 AC 41 ms
21,864 KB
testcase_10 AC 41 ms
21,360 KB
testcase_11 AC 37 ms
21,864 KB
testcase_12 WA -
testcase_13 AC 42 ms
21,540 KB
testcase_14 WA -
testcase_15 AC 42 ms
21,876 KB
testcase_16 AC 41 ms
21,372 KB
testcase_17 AC 41 ms
21,360 KB
testcase_18 WA -
testcase_19 AC 41 ms
21,288 KB
testcase_20 AC 42 ms
21,876 KB
testcase_21 AC 44 ms
21,684 KB
testcase_22 WA -
testcase_23 AC 42 ms
21,372 KB
testcase_24 AC 41 ms
21,372 KB
testcase_25 WA -
testcase_26 AC 40 ms
21,192 KB
testcase_27 WA -
testcase_28 AC 41 ms
21,876 KB
testcase_29 AC 41 ms
21,504 KB
testcase_30 AC 41 ms
21,372 KB
testcase_31 AC 41 ms
21,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program y5003
    implicit none
    integer(8)::N,i
    character(10000)::S
    read*,N,S

    do i=1,N
        print'(A)',"click"
    end do
end program y5003
0