結果

問題 No.723 2つの数の和
ユーザー vividrabbitvividrabbit
提出日時 2018-11-17 15:35:56
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 406 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 56,948 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-12-24 14:34:06
合計ジャッジ時間 47,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,704 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,867 ms
8,832 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,653 ms
10,496 KB
testcase_11 AC 83 ms
8,704 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 655 ms
8,576 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2 ms
10,496 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 TLE -
testcase_24 AC 975 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>

using namespace std;

int main(){
    int input_num;
    cin >> input_num;
    int sum;
    cin >> sum;
    int array[input_num];
    for(int i=0;i<input_num;i++){
        cin >> array[i];
    }
    long output = 0;
    
    for(int i=0;i<input_num;i++){
        output += count(array,array+input_num,sum-array[i]);
    }

    cout << output << endl;
    return 0;
}
0