結果

問題 No.5003 物理好きクリッカー
ユーザー KKT89
提出日時 2020-06-05 05:02:48
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 1,293 ms
実行使用メモリ 22,008 KB
スコア 0
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 11:41:30
合計ジャッジ時間 4,703 ms
ジャッジサーバーID
(参考情報)
judge10 / judge12
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <set>
#include <numeric>
#include <math.h>
#include <map>
#include <queue>
#include <assert.h>
using namespace std;
typedef long long int ll;

 
int main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	int n; cin >> n;
	for(int i=0;i<n;i++){
		cout << "Nothing" << endl;
	}
}
0