結果

問題 No.723 2つの数の和
ユーザー 👑 KazunKazun
提出日時 2020-08-31 14:37:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 81,784 KB
実行使用メモリ 96,084 KB
最終ジャッジ日時 2024-11-15 23:05:11
合計ジャッジ時間 3,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,348 KB
testcase_01 AC 38 ms
52,436 KB
testcase_02 AC 38 ms
51,872 KB
testcase_03 AC 70 ms
84,412 KB
testcase_04 AC 83 ms
91,588 KB
testcase_05 AC 77 ms
89,416 KB
testcase_06 AC 77 ms
89,852 KB
testcase_07 AC 61 ms
74,636 KB
testcase_08 AC 61 ms
76,632 KB
testcase_09 AC 82 ms
92,188 KB
testcase_10 AC 58 ms
72,892 KB
testcase_11 AC 47 ms
64,292 KB
testcase_12 AC 65 ms
79,256 KB
testcase_13 AC 78 ms
90,976 KB
testcase_14 AC 52 ms
69,224 KB
testcase_15 AC 58 ms
74,764 KB
testcase_16 AC 66 ms
82,408 KB
testcase_17 AC 73 ms
87,688 KB
testcase_18 AC 63 ms
80,960 KB
testcase_19 AC 67 ms
83,140 KB
testcase_20 AC 38 ms
52,116 KB
testcase_21 AC 38 ms
51,744 KB
testcase_22 AC 38 ms
52,364 KB
testcase_23 AC 81 ms
96,084 KB
testcase_24 AC 55 ms
70,788 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