結果

問題 No.5003 物理好きクリッカー
ユーザー CleyLCleyL
提出日時 2021-10-27 10:20:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 164 bytes
コンパイル時間 395 ms
実行使用メモリ 22,392 KB
スコア 296,420
平均クエリ数 10000.00
最終ジャッジ日時 2021-10-27 10:20:55
合計ジャッジ時間 3,951 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
22,152 KB
testcase_01 WA -
testcase_02 AC 36 ms
21,900 KB
testcase_03 WA -
testcase_04 AC 37 ms
22,128 KB
testcase_05 WA -
testcase_06 AC 36 ms
22,092 KB
testcase_07 AC 37 ms
22,392 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
21,780 KB
testcase_13 AC 38 ms
21,960 KB
testcase_14 WA -
testcase_15 AC 38 ms
22,128 KB
testcase_16 WA -
testcase_17 AC 38 ms
22,056 KB
testcase_18 AC 38 ms
21,924 KB
testcase_19 AC 37 ms
22,068 KB
testcase_20 AC 37 ms
22,080 KB
testcase_21 AC 37 ms
21,624 KB
testcase_22 AC 38 ms
22,056 KB
testcase_23 AC 37 ms
21,780 KB
testcase_24 AC 38 ms
21,972 KB
testcase_25 AC 42 ms
21,912 KB
testcase_26 WA -
testcase_27 AC 41 ms
21,900 KB
testcase_28 WA -
testcase_29 AC 38 ms
21,792 KB
testcase_30 AC 38 ms
22,008 KB
testcase_31 AC 39 ms
22,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    int n;cin>>n;
    string s;cin>>s;
    for(int i = 0; n > i; i++){
        cout << "click" << endl;
    }
}
0