結果

問題 No.723 2つの数の和
ユーザー titiatitia
提出日時 2023-05-17 07:54:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,412 KB
最終ジャッジ日時 2024-05-08 20:33:48
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
10,624 KB
testcase_01 AC 114 ms
10,624 KB
testcase_02 AC 111 ms
10,624 KB
testcase_03 AC 154 ms
19,580 KB
testcase_04 AC 165 ms
20,028 KB
testcase_05 AC 157 ms
20,432 KB
testcase_06 AC 159 ms
20,740 KB
testcase_07 AC 136 ms
16,184 KB
testcase_08 AC 141 ms
16,976 KB
testcase_09 AC 168 ms
20,352 KB
testcase_10 AC 133 ms
15,944 KB
testcase_11 AC 118 ms
11,904 KB
testcase_12 AC 144 ms
16,468 KB
testcase_13 AC 167 ms
20,772 KB
testcase_14 AC 125 ms
13,564 KB
testcase_15 AC 134 ms
16,336 KB
testcase_16 AC 143 ms
19,456 KB
testcase_17 AC 158 ms
20,172 KB
testcase_18 AC 142 ms
12,616 KB
testcase_19 AC 159 ms
20,720 KB
testcase_20 AC 108 ms
10,624 KB
testcase_21 AC 108 ms
10,496 KB
testcase_22 AC 110 ms
10,496 KB
testcase_23 AC 134 ms
24,412 KB
testcase_24 AC 130 ms
15,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import Counter
C=Counter(A)

ANS=0
for i in range(10**5+1):
    k=X-i

    if k==i:
        ANS+=C[i]*C[i]
    else:
        ANS+=C[i]*C[k]

print(ANS)
0