結果

問題 No.723 2つの数の和
ユーザー H20H20
提出日時 2020-12-01 14:51:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 100,908 KB
最終ジャッジ日時 2024-09-13 02:59:35
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,336 KB
testcase_01 AC 43 ms
54,436 KB
testcase_02 AC 42 ms
53,912 KB
testcase_03 AC 80 ms
87,568 KB
testcase_04 AC 90 ms
94,584 KB
testcase_05 AC 84 ms
93,192 KB
testcase_06 AC 87 ms
94,788 KB
testcase_07 AC 67 ms
78,268 KB
testcase_08 AC 69 ms
79,336 KB
testcase_09 AC 88 ms
95,580 KB
testcase_10 AC 65 ms
76,148 KB
testcase_11 AC 55 ms
67,504 KB
testcase_12 AC 73 ms
81,608 KB
testcase_13 AC 88 ms
94,428 KB
testcase_14 AC 58 ms
71,048 KB
testcase_15 AC 65 ms
76,932 KB
testcase_16 AC 73 ms
85,520 KB
testcase_17 AC 80 ms
91,488 KB
testcase_18 AC 67 ms
83,256 KB
testcase_19 AC 71 ms
84,992 KB
testcase_20 AC 42 ms
54,052 KB
testcase_21 AC 42 ms
53,928 KB
testcase_22 AC 43 ms
53,916 KB
testcase_23 AC 87 ms
100,908 KB
testcase_24 AC 62 ms
73,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,X = map(int,input().split())
A = list(map(int,input().split()))
C =  collections.Counter(A)
cnt = 0
for i in range(N):
    if X-A[i]>=0:
        cnt += C[X-A[i]]

print(cnt)
0