結果

問題 No.723 2つの数の和
ユーザー flippergoflippergo
提出日時 2020-12-26 12:59:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 99,884 KB
最終ジャッジ日時 2024-09-24 16:09:10
合計ジャッジ時間 2,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,428 KB
testcase_01 AC 36 ms
52,272 KB
testcase_02 AC 37 ms
52,468 KB
testcase_03 AC 73 ms
85,152 KB
testcase_04 AC 82 ms
93,652 KB
testcase_05 AC 78 ms
90,848 KB
testcase_06 AC 79 ms
91,620 KB
testcase_07 AC 60 ms
75,200 KB
testcase_08 AC 62 ms
76,492 KB
testcase_09 AC 83 ms
93,320 KB
testcase_10 AC 59 ms
75,252 KB
testcase_11 AC 49 ms
63,704 KB
testcase_12 AC 66 ms
81,068 KB
testcase_13 AC 80 ms
93,892 KB
testcase_14 AC 53 ms
68,876 KB
testcase_15 AC 60 ms
76,688 KB
testcase_16 AC 69 ms
82,936 KB
testcase_17 AC 76 ms
89,056 KB
testcase_18 AC 62 ms
80,148 KB
testcase_19 AC 69 ms
83,412 KB
testcase_20 AC 38 ms
53,416 KB
testcase_21 AC 38 ms
52,552 KB
testcase_22 AC 38 ms
53,704 KB
testcase_23 AC 84 ms
99,884 KB
testcase_24 AC 55 ms
71,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X = map(int,input().split())
A = list(map(int,input().split()))
C = {}
for i in range(N):
    if A[i] not in C:
        C[A[i]] = 0
    C[A[i]] += 1
cnt = 0
for i in range(N):
    a = A[i]
    if X-a in C:
        if X-a!=a:
            cnt += C[X-a]
        else:
            cnt += C[a]
print(cnt)
0