結果

問題 No.1510 Simple Integral
ユーザー magsta
提出日時 2021-04-06 21:08:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 504 bytes
コンパイル時間 6,862 ms
コンパイル使用メモリ 225,532 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-14 22:58:43
合計ジャッジ時間 8,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <utility>
#include <cmath>
#include <cstdlib>
#include <map>
#include <set>
#include <queue>
#include <vector>
#include "testlib.h"
using namespace std;

int main() {
    long long N = inf.readInt(1, 1000);
    inf.readEoln();
    vector<long long> A(N);
    A[0] = inf.readInt(1, 1000000);
    for (int i = 1; i < N; i++) {
        inf.readSpace();
        A[i] = inf.readInt(1, 1000000);
    }
    inf.readEoln();
    inf.readEof();
}
0