結果

問題 No.5003 物理好きクリッカー
ユーザー CleyLCleyL
提出日時 2021-10-27 10:26:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 340 ms / 10,000 ms
コード長 203 bytes
コンパイル時間 419 ms
実行使用メモリ 22,308 KB
スコア 452,672
平均クエリ数 10000.00
最終ジャッジ日時 2021-10-27 10:26:29
合計ジャッジ時間 12,894 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
21,948 KB
testcase_01 AC 310 ms
21,888 KB
testcase_02 AC 308 ms
22,032 KB
testcase_03 AC 310 ms
21,948 KB
testcase_04 AC 317 ms
21,960 KB
testcase_05 AC 330 ms
21,876 KB
testcase_06 AC 308 ms
21,984 KB
testcase_07 AC 306 ms
21,948 KB
testcase_08 AC 312 ms
21,888 KB
testcase_09 AC 306 ms
21,900 KB
testcase_10 AC 330 ms
21,948 KB
testcase_11 AC 308 ms
21,948 KB
testcase_12 AC 306 ms
21,888 KB
testcase_13 AC 307 ms
21,900 KB
testcase_14 AC 307 ms
22,116 KB
testcase_15 AC 332 ms
22,308 KB
testcase_16 AC 307 ms
21,780 KB
testcase_17 AC 304 ms
22,032 KB
testcase_18 AC 313 ms
21,948 KB
testcase_19 AC 304 ms
21,900 KB
testcase_20 AC 328 ms
21,984 KB
testcase_21 AC 309 ms
22,104 KB
testcase_22 AC 305 ms
21,780 KB
testcase_23 AC 308 ms
21,792 KB
testcase_24 AC 304 ms
21,900 KB
testcase_25 AC 340 ms
21,780 KB
testcase_26 AC 310 ms
22,080 KB
testcase_27 AC 310 ms
21,828 KB
testcase_28 AC 309 ms
21,924 KB
testcase_29 AC 309 ms
22,116 KB
testcase_30 AC 334 ms
21,888 KB
testcase_31 AC 306 ms
21,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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