結果

問題 No.723 2つの数の和
ユーザー eQeeQe
提出日時 2020-05-05 22:51:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 106,384 KB
最終ジャッジ日時 2024-06-27 06:39:32
合計ジャッジ時間 3,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,672 KB
testcase_01 AC 50 ms
60,288 KB
testcase_02 AC 49 ms
60,928 KB
testcase_03 AC 90 ms
94,464 KB
testcase_04 AC 100 ms
102,144 KB
testcase_05 AC 98 ms
101,632 KB
testcase_06 AC 98 ms
100,352 KB
testcase_07 AC 79 ms
83,968 KB
testcase_08 AC 78 ms
86,144 KB
testcase_09 AC 105 ms
100,352 KB
testcase_10 AC 74 ms
82,688 KB
testcase_11 AC 60 ms
68,480 KB
testcase_12 AC 82 ms
89,088 KB
testcase_13 AC 104 ms
106,384 KB
testcase_14 AC 68 ms
76,160 KB
testcase_15 AC 77 ms
84,992 KB
testcase_16 AC 94 ms
94,208 KB
testcase_17 AC 101 ms
101,632 KB
testcase_18 AC 78 ms
83,200 KB
testcase_19 AC 78 ms
86,528 KB
testcase_20 AC 49 ms
60,672 KB
testcase_21 AC 50 ms
60,288 KB
testcase_22 AC 49 ms
60,288 KB
testcase_23 AC 93 ms
101,632 KB
testcase_24 AC 71 ms
79,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import cmath
import sys
from collections import deque, defaultdict
from heapq import heappop,heappush
from copy import deepcopy

INF=10**18
MOD=10**9+7
MAX=10**5+7

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

  mp=defaultdict(int)
  for a in A:
    mp[a]+=1

  ans=0
  for a in A:
    ans+=mp[X-a]

  print(ans)


if __name__=='__main__':
    main()
0