結果

問題 No.723 2つの数の和
ユーザー ttrttr
提出日時 2020-02-10 19:27:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,716 KB
最終ジャッジ日時 2024-10-01 06:29:03
合計ジャッジ時間 2,585 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 88 ms
17,412 KB
testcase_04 AC 106 ms
19,856 KB
testcase_05 AC 92 ms
18,952 KB
testcase_06 AC 99 ms
19,092 KB
testcase_07 AC 76 ms
15,080 KB
testcase_08 AC 77 ms
15,464 KB
testcase_09 AC 96 ms
20,468 KB
testcase_10 AC 83 ms
15,040 KB
testcase_11 AC 61 ms
12,288 KB
testcase_12 AC 79 ms
15,728 KB
testcase_13 AC 84 ms
20,556 KB
testcase_14 AC 49 ms
13,692 KB
testcase_15 AC 57 ms
15,172 KB
testcase_16 AC 68 ms
16,792 KB
testcase_17 AC 82 ms
18,764 KB
testcase_18 AC 61 ms
12,488 KB
testcase_19 AC 88 ms
20,716 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 24 ms
10,752 KB
testcase_22 AC 24 ms
10,880 KB
testcase_23 AC 110 ms
20,524 KB
testcase_24 AC 55 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X = map(int, input().split())
A = [int(a) for a in input().split()]

M = max(A)+1
L = [0]*M
for a in A:
    L[a] += 1
ans = 0
for i in range(M):
    if X-i >= M or X-i < 0:
        continue
    ans += L[i]*L[X-i]
print(ans)
0