結果

問題 No.723 2つの数の和
ユーザー takakintakakin
提出日時 2020-04-24 02:01:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,740 KB
最終ジャッジ日時 2024-10-14 10:59:15
合計ジャッジ時間 3,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 120 ms
24,092 KB
testcase_04 AC 149 ms
24,744 KB
testcase_05 AC 140 ms
25,484 KB
testcase_06 AC 145 ms
25,116 KB
testcase_07 AC 81 ms
18,356 KB
testcase_08 AC 89 ms
19,332 KB
testcase_09 AC 158 ms
24,936 KB
testcase_10 AC 79 ms
18,508 KB
testcase_11 AC 39 ms
12,288 KB
testcase_12 AC 98 ms
18,740 KB
testcase_13 AC 156 ms
24,940 KB
testcase_14 AC 60 ms
14,800 KB
testcase_15 AC 83 ms
18,408 KB
testcase_16 AC 113 ms
23,744 KB
testcase_17 AC 139 ms
25,132 KB
testcase_18 AC 105 ms
12,488 KB
testcase_19 AC 127 ms
20,720 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 26 ms
10,624 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 137 ms
25,740 KB
testcase_24 AC 67 ms
17,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,x=map(int,input().split())
A=[int(i) for i in input().split()]
import collections
D=collections.defaultdict(int)
ans=0
for a in A:
  ans+=2*D[x-a]
  D[a]+=1
  if a*2==x:
    ans+=1
print(ans)
0