結果

問題 No.723 2つの数の和
ユーザー 👑 KazunKazun
提出日時 2020-08-31 14:37:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 97,000 KB
最終ジャッジ日時 2024-04-27 18:30:19
合計ジャッジ時間 2,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,300 KB
testcase_01 AC 35 ms
52,272 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 69 ms
83,940 KB
testcase_04 AC 77 ms
91,628 KB
testcase_05 AC 70 ms
89,156 KB
testcase_06 AC 67 ms
90,964 KB
testcase_07 AC 49 ms
73,908 KB
testcase_08 AC 52 ms
75,892 KB
testcase_09 AC 69 ms
92,272 KB
testcase_10 AC 48 ms
73,436 KB
testcase_11 AC 38 ms
63,256 KB
testcase_12 AC 54 ms
79,084 KB
testcase_13 AC 66 ms
91,660 KB
testcase_14 AC 44 ms
68,472 KB
testcase_15 AC 49 ms
75,308 KB
testcase_16 AC 54 ms
82,832 KB
testcase_17 AC 60 ms
87,480 KB
testcase_18 AC 51 ms
80,864 KB
testcase_19 AC 56 ms
82,604 KB
testcase_20 AC 31 ms
52,212 KB
testcase_21 AC 31 ms
52,272 KB
testcase_22 AC 31 ms
51,828 KB
testcase_23 AC 66 ms
97,000 KB
testcase_24 AC 45 ms
70,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())
A=list(map(int,input().split()))

D={}
for a in A:
    if a in D:
        D[a]+=1
    else:
        D[a]=1

K=0
for a in A:
    if X-a in D:
        K+=D[X-a]

print(K)
0