結果

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

ソースコード

diff #

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

int main(){
    registerValidation();
    int n = inf.readInt(2, 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