結果

問題 No.2285 Make A Unit Square
ユーザー 👑 potato167potato167
提出日時 2023-04-28 04:30:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 8,518 ms
コンパイル使用メモリ 330,132 KB
実行使用メモリ 11,860 KB
最終ジャッジ日時 2024-04-28 14:27:18
合計ジャッジ時間 7,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include "testlib.h"
using namespace std;
using ll=long long;
const int MIN_T=1;
const int MAX_T=100'000;
const int MIN_V=2;
const int MAX_V=1'000'000'000;
int main(int argc,char** argv){
	registerValidation(argc,argv);
	int T=inf.readInt(MIN_T,MAX_T);
	inf.readEoln();
	for(int i=0;i<T;i++){
		int a=inf.readInt(MIN_V,MAX_V);
		inf.readSpace();
		int b=inf.readInt(MIN_V,MAX_V);
		inf.readEoln();
	}
	inf.readEof();
}
0