結果

問題 No.723 2つの数の和
ユーザー akitsugu777akitsugu777
提出日時 2018-10-05 14:49:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,340 KB
最終ジャッジ日時 2024-10-12 12:32:51
合計ジャッジ時間 2,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 103 ms
19,328 KB
testcase_04 AC 120 ms
20,764 KB
testcase_05 AC 109 ms
21,088 KB
testcase_06 AC 116 ms
20,796 KB
testcase_07 AC 65 ms
16,228 KB
testcase_08 AC 71 ms
16,884 KB
testcase_09 AC 120 ms
20,244 KB
testcase_10 AC 64 ms
16,184 KB
testcase_11 AC 36 ms
11,904 KB
testcase_12 AC 75 ms
16,460 KB
testcase_13 AC 113 ms
20,664 KB
testcase_14 AC 49 ms
13,820 KB
testcase_15 AC 65 ms
16,336 KB
testcase_16 AC 83 ms
19,352 KB
testcase_17 AC 101 ms
20,684 KB
testcase_18 AC 80 ms
12,616 KB
testcase_19 AC 99 ms
20,720 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 144 ms
25,340 KB
testcase_24 AC 54 ms
15,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = [int(_) for _ in input().split()]
l = [int(_) for _ in input().split()]

count = {}
for i in l:
    if i in count:
        count[i] += 1
    else:
        count[i] = 1

answer = 0
for i in count:
    if x-i in count:
        answer += count[i] * count[x-i]

print(answer)
0