結果

問題 No.723 2つの数の和
ユーザー PUNTE5963PUNTE5963
提出日時 2018-09-04 13:32:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,520 KB
最終ジャッジ日時 2024-10-13 08:30:49
合計ジャッジ時間 2,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,264 KB
testcase_01 AC 30 ms
11,264 KB
testcase_02 AC 30 ms
11,264 KB
testcase_03 AC 68 ms
17,164 KB
testcase_04 AC 79 ms
19,728 KB
testcase_05 AC 72 ms
19,080 KB
testcase_06 AC 77 ms
18,968 KB
testcase_07 AC 49 ms
15,080 KB
testcase_08 AC 53 ms
15,476 KB
testcase_09 AC 74 ms
20,092 KB
testcase_10 AC 51 ms
14,916 KB
testcase_11 AC 34 ms
12,160 KB
testcase_12 AC 56 ms
15,608 KB
testcase_13 AC 78 ms
20,408 KB
testcase_14 AC 42 ms
13,692 KB
testcase_15 AC 49 ms
15,048 KB
testcase_16 AC 59 ms
16,804 KB
testcase_17 AC 69 ms
18,644 KB
testcase_18 AC 68 ms
12,396 KB
testcase_19 AC 88 ms
20,520 KB
testcase_20 AC 31 ms
11,520 KB
testcase_21 AC 30 ms
11,136 KB
testcase_22 AC 31 ms
11,136 KB
testcase_23 AC 84 ms
20,396 KB
testcase_24 AC 44 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(X, A):
    B = [0] * 101010
    for ia in A:
        B[ia] += 1
    c = 0
    for i1 in A:
        if X - i1 >= 0 and X - i1 <= 100000:
            c += B[X - i1]
    return c


if __name__ == '__main__':
    N, X = map(int, input().split())
    a = list(map(int, input().split()))
    print(calc(X, a))
0