結果

問題 No.5003 物理好きクリッカー
ユーザー KKT89KKT89
提出日時 2020-06-05 05:02:48
言語 C++17
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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