結果

問題 No.723 2つの数の和
ユーザー convexineqconvexineq
提出日時 2021-02-26 02:18:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 102,528 KB
最終ジャッジ日時 2024-10-01 18:30:18
合計ジャッジ時間 3,865 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,992 KB
testcase_01 AC 47 ms
53,248 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 93 ms
88,704 KB
testcase_04 AC 101 ms
97,408 KB
testcase_05 AC 92 ms
94,720 KB
testcase_06 AC 98 ms
95,872 KB
testcase_07 AC 71 ms
77,184 KB
testcase_08 AC 72 ms
79,104 KB
testcase_09 AC 100 ms
98,176 KB
testcase_10 AC 75 ms
76,288 KB
testcase_11 AC 57 ms
64,896 KB
testcase_12 AC 79 ms
82,176 KB
testcase_13 AC 101 ms
97,664 KB
testcase_14 AC 66 ms
70,400 KB
testcase_15 AC 74 ms
77,184 KB
testcase_16 AC 83 ms
85,632 KB
testcase_17 AC 92 ms
92,672 KB
testcase_18 AC 74 ms
84,864 KB
testcase_19 AC 87 ms
87,936 KB
testcase_20 AC 46 ms
53,720 KB
testcase_21 AC 46 ms
53,248 KB
testcase_22 AC 45 ms
53,680 KB
testcase_23 AC 96 ms
102,528 KB
testcase_24 AC 66 ms
72,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x = map(int,input().split())
*a, = map(int,input().split())
from collections import Counter
d = Counter(a)
ans = 0
for ai in a:
    v = x-ai
    if v in d:
        ans += d[v]
print(ans)
0