結果

問題 No.5003 物理好きクリッカー
ユーザー risujirohrisujiroh
提出日時 2018-12-05 17:21:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 816 bytes
コンパイル時間 1,429 ms
実行使用メモリ 21,996 KB
スコア 31
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 08:47:22
合計ジャッジ時間 4,822 ms
ジャッジサーバーID
(参考情報)
judge14 / judge10
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using namespace chrono;
using uint = unsigned int;
using lint = long long int;
using ulint = unsigned long long int;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;
template<class T, class U> void assign(V<T>& v, int n, const U& a) { v.assign(n, a); }
template<class T, class... Args> void assign(V<T>& v, int n, const Args&... args) { v.resize(n); for (auto&& e : v) assign(e, args...); }


// input
constexpr int N = 10000;
string S;

void read_input() {
  int _;
  cin >> _;
  assert(_ == N);
  cin >> S;
}

void write_output() {
  for (int i = 0; i < N; ++i) {
    cout << (i == N - 1 ? "click" : "nothing") << endl;
  }
  string str;
  cin >> str;
  assert(str == "ok");
}

int main() {
  read_input();
  write_output();
}
0