結果
| 問題 | No.5003 物理好きクリッカー |
| コンテスト | |
| ユーザー |
risujiroh
|
| 提出日時 | 2018-12-05 17:21:57 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 18 WA * 14 |
ソースコード
#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();
}
risujiroh