結果

問題 No.723 2つの数の和
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-08-26 10:42:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,464 KB
最終ジャッジ日時 2024-06-28 14:23:47
合計ジャッジ時間 2,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 85 ms
19,460 KB
testcase_04 AC 106 ms
20,112 KB
testcase_05 AC 96 ms
20,176 KB
testcase_06 AC 101 ms
20,832 KB
testcase_07 AC 63 ms
16,180 KB
testcase_08 AC 64 ms
16,848 KB
testcase_09 AC 102 ms
20,216 KB
testcase_10 AC 61 ms
15,952 KB
testcase_11 AC 34 ms
11,776 KB
testcase_12 AC 68 ms
16,472 KB
testcase_13 AC 100 ms
20,408 KB
testcase_14 AC 45 ms
13,696 KB
testcase_15 AC 58 ms
16,336 KB
testcase_16 AC 79 ms
19,348 KB
testcase_17 AC 92 ms
20,048 KB
testcase_18 AC 70 ms
12,488 KB
testcase_19 AC 91 ms
20,592 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 134 ms
24,464 KB
testcase_24 AC 51 ms
15,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X = map(int, input().split())
a = list(map(int, input().split()))

b = {}
for ai in a:
    if ai not in b:
        b[ai] = 1
    else:
        b[ai] += 1

ans = 0
for k in b:
    if X - k in b:
        ans += b[k] * b[X - k]

print(ans)
0