結果

問題 No.5003 物理好きクリッカー
ユーザー 👑 CleyL
提出日時 2021-10-27 10:20:50
言語 C++14
(gcc 13.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21 WA * 11
権限があれば一括ダウンロードができます

ソースコード

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