結果

問題 No.723 2つの数の和
ユーザー dangodango
提出日時 2023-06-16 19:23:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 99,732 KB
最終ジャッジ日時 2024-06-24 11:21:09
合計ジャッジ時間 2,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,196 KB
testcase_01 AC 46 ms
60,680 KB
testcase_02 AC 46 ms
61,128 KB
testcase_03 AC 80 ms
90,396 KB
testcase_04 AC 103 ms
99,420 KB
testcase_05 AC 98 ms
97,820 KB
testcase_06 AC 88 ms
94,768 KB
testcase_07 AC 70 ms
77,928 KB
testcase_08 AC 71 ms
80,024 KB
testcase_09 AC 91 ms
97,076 KB
testcase_10 AC 72 ms
80,260 KB
testcase_11 AC 56 ms
68,036 KB
testcase_12 AC 75 ms
83,412 KB
testcase_13 AC 86 ms
97,092 KB
testcase_14 AC 59 ms
72,132 KB
testcase_15 AC 66 ms
78,788 KB
testcase_16 AC 75 ms
87,060 KB
testcase_17 AC 79 ms
92,204 KB
testcase_18 AC 65 ms
83,140 KB
testcase_19 AC 70 ms
85,416 KB
testcase_20 AC 46 ms
60,612 KB
testcase_21 AC 46 ms
61,860 KB
testcase_22 AC 46 ms
61,204 KB
testcase_23 AC 80 ms
99,732 KB
testcase_24 AC 68 ms
76,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N, X = map(int,input().split())
A = list(map(int,input().split()))
C = collections.Counter(A)
ans = 0
for i in range(10 ** 5 + 1):
    if X == 2 * i:
        ans += C[i] ** 2
    else:
        ans += C[i]* C[X - i]
print(ans)
0