結果

問題 No.5003 物理好きクリッカー
ユーザー olphe
提出日時 2018-12-01 02:41:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 219 ms / 10,000 ms
コード長 680 bytes
コンパイル時間 828 ms
実行使用メモリ 22,008 KB
スコア 452,672
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 07:26:19
合計ジャッジ時間 8,866 ms
ジャッジサーバーID
(参考情報)
judge15 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "string"
#include "map"
#include "unordered_map"
#include "unordered_set"
#include "iomanip"
#include "cmath"
#include "random"
#include "bitset"
#include "cstdio"
#include "numeric"

using namespace std;

const long long int MOD = 1000000007;
//const int MOD = 998244353;

//long long int N, M, K, H, W, L, R;
long long int N, M, K, H, W, L, R;


int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);

	cin >> N;
	string s;
	for (int i = 0; i < N; i++) {
		cout << "click" << endl;
		string s;
		cin >> s;
	}
	return 0;
}
0