結果
問題 |
No.2897 2集合間距離
|
ユーザー |
👑 |
提出日時 | 2024-05-28 06:40:04 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 340 bytes |
コンパイル時間 | 4,179 ms |
コンパイル使用メモリ | 249,920 KB |
最終ジャッジ日時 | 2025-02-21 17:01:34 |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 16 RE * 8 |
ソースコード
#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; }