結果

問題 No.723 2つの数の和
ユーザー U-ArU-Ar
提出日時 2018-11-23 18:03:04
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 402 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 58,200 KB
実行使用メモリ 17,480 KB
最終ジャッジ日時 2024-12-24 18:46:03
合計ジャッジ時間 43,427 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,832 KB
testcase_02 AC 1 ms
12,068 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,253 ms
13,636 KB
testcase_08 AC 1,615 ms
10,788 KB
testcase_09 TLE -
testcase_10 AC 1,131 ms
10,788 KB
testcase_11 AC 57 ms
10,404 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 446 ms
10,656 KB
testcase_15 AC 1,377 ms
13,636 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 TLE -
testcase_24 AC 657 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>

using namespace std;

int main() {
    long n, x;
    

    cin >> n;
    cin >> x;

    vector<long> a(n);

    for (int i = 0; i < n; i++){
        cin >> a[i];
    }
    
    long res = 0;

    for (int i = 0; i < n; i++){
        for (int j = 0; j < n; j++){
            if ((a[i] + a[j]) == x)
                res++;
        }
    }
    cout << res  << "\n";
}
0