結果

問題 No.2779 Don't make Pair
ユーザー 👑 seekworser
提出日時 2024-06-02 19:20:21
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 11,407 ms
コンパイル使用メモリ 336,340 KB
実行使用メモリ 8,288 KB
最終ジャッジ日時 2024-12-24 17:49:31
合計ジャッジ時間 11,848 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 5
other WA * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include <bits/stdc++.h>
using namespace std;

int main(){
    registerValidation();
    int n = inf.readInt(1, 200000);
    inf.readEoln();
    vector<int> a(n);
    for (int i=0; i<n; i++) {
    	a[i] = inf.readInt(1, 1000000000);
    	if (i != n-1) inf.readSpace();
    	else inf.readEoln();
    }
    inf.readEof();
}
0