結果

問題 No.723 2つの数の和
ユーザー titiatitia
提出日時 2023-05-17 07:54:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,484 KB
最終ジャッジ日時 2024-12-15 03:47:10
合計ジャッジ時間 4,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
10,496 KB
testcase_01 AC 97 ms
10,496 KB
testcase_02 AC 101 ms
10,624 KB
testcase_03 AC 130 ms
19,452 KB
testcase_04 AC 136 ms
20,024 KB
testcase_05 AC 138 ms
20,304 KB
testcase_06 AC 140 ms
20,740 KB
testcase_07 AC 113 ms
16,180 KB
testcase_08 AC 128 ms
16,848 KB
testcase_09 AC 140 ms
20,308 KB
testcase_10 AC 115 ms
15,948 KB
testcase_11 AC 107 ms
11,776 KB
testcase_12 AC 121 ms
16,604 KB
testcase_13 AC 142 ms
20,432 KB
testcase_14 AC 109 ms
13,564 KB
testcase_15 AC 117 ms
16,336 KB
testcase_16 AC 124 ms
19,348 KB
testcase_17 AC 135 ms
20,156 KB
testcase_18 AC 126 ms
12,484 KB
testcase_19 AC 137 ms
20,848 KB
testcase_20 AC 101 ms
10,496 KB
testcase_21 AC 94 ms
10,624 KB
testcase_22 AC 96 ms
10,496 KB
testcase_23 AC 122 ms
24,484 KB
testcase_24 AC 111 ms
15,288 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