結果

問題 No.723 2つの数の和
ユーザー yurarayurara
提出日時 2019-05-16 21:55:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,156 KB
最終ジャッジ日時 2024-09-17 05:40:24
合計ジャッジ時間 3,332 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 125 ms
23,888 KB
testcase_04 AC 143 ms
23,784 KB
testcase_05 AC 136 ms
24,408 KB
testcase_06 AC 141 ms
25,156 KB
testcase_07 AC 85 ms
18,296 KB
testcase_08 AC 88 ms
19,068 KB
testcase_09 AC 145 ms
24,500 KB
testcase_10 AC 81 ms
18,180 KB
testcase_11 AC 41 ms
12,144 KB
testcase_12 AC 97 ms
18,468 KB
testcase_13 AC 150 ms
24,512 KB
testcase_14 AC 61 ms
14,676 KB
testcase_15 AC 84 ms
18,324 KB
testcase_16 AC 114 ms
23,720 KB
testcase_17 AC 128 ms
23,756 KB
testcase_18 AC 65 ms
12,488 KB
testcase_19 AC 83 ms
20,724 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 36 ms
10,752 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 139 ms
24,604 KB
testcase_24 AC 71 ms
17,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

dic = defaultdict()
dic.default_factory = lambda: 0

for a in As:
    dic[a] += 1

count = 0
for key in list(dic.keys()):
    count += dic[key] * dic[X - key]
    
print(count)
0