結果

問題 No.2897 2集合間距離
ユーザー 👑 binapbinap
提出日時 2024-05-28 06:40:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 3,852 ms
コンパイル使用メモリ 260,884 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 20:51:41
合計ジャッジ時間 5,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;

int main(){
	rep(_, 2){
		int N;
		cin >> N;
		assert(N >= 1 && N < 200000);
		if(cin.fail()) assert(false);
		rep(i, N){
			int x, y;
			cin >> x >> y;
			assert(x >= 0 && x < 1000);
			assert(y >= 0 && y < 1000);
		}
	}
	return 0;
}
0