結果

問題 No.723 2つの数の和
ユーザー nonokai10nonokai10
提出日時 2018-09-30 14:58:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,596 KB
最終ジャッジ日時 2024-10-12 09:07:44
合計ジャッジ時間 2,994 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 35 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 87 ms
19,332 KB
testcase_04 AC 118 ms
20,108 KB
testcase_05 AC 106 ms
20,440 KB
testcase_06 AC 113 ms
20,724 KB
testcase_07 AC 64 ms
16,308 KB
testcase_08 AC 73 ms
16,980 KB
testcase_09 AC 119 ms
20,344 KB
testcase_10 AC 68 ms
15,952 KB
testcase_11 AC 38 ms
11,776 KB
testcase_12 AC 76 ms
16,604 KB
testcase_13 AC 112 ms
20,664 KB
testcase_14 AC 51 ms
13,568 KB
testcase_15 AC 66 ms
16,468 KB
testcase_16 AC 81 ms
19,352 KB
testcase_17 AC 101 ms
19,900 KB
testcase_18 AC 76 ms
12,488 KB
testcase_19 AC 89 ms
20,720 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 133 ms
24,596 KB
testcase_24 AC 51 ms
15,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
a = list(map(int, input().split()))
cnt = {}
for i in a:
    if i in cnt:
        cnt[i] += 1
    else:
        cnt[i] = 1

ans = 0

for i in cnt:
    if x-i in cnt:
        ans += cnt[i]*cnt[x-i]

print(ans)
0