結果

問題 No.5003 物理好きクリッカー
ユーザー k_kirik_kiri
提出日時 2018-12-01 19:14:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 176 bytes
コンパイル時間 1,456 ms
実行使用メモリ 36,472 KB
スコア 295,662
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 07:47:42
合計ジャッジ時間 4,945 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N;
  char S;
  cin >> N >> S;
  for (int i = 0; i < N; i++) {
    cout << "click" << endl;
    cin >> S;
  }
}
0