結果

問題 No.723 2つの数の和
ユーザー shoooooshooooo
提出日時 2019-11-27 00:30:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,108 KB
最終ジャッジ日時 2024-11-07 01:04:32
合計ジャッジ時間 3,031 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 100 ms
19,432 KB
testcase_04 AC 124 ms
20,704 KB
testcase_05 AC 111 ms
20,820 KB
testcase_06 AC 118 ms
20,788 KB
testcase_07 AC 66 ms
16,300 KB
testcase_08 AC 72 ms
16,952 KB
testcase_09 AC 121 ms
21,068 KB
testcase_10 AC 65 ms
16,164 KB
testcase_11 AC 37 ms
11,904 KB
testcase_12 AC 78 ms
16,596 KB
testcase_13 AC 119 ms
20,528 KB
testcase_14 AC 50 ms
13,824 KB
testcase_15 AC 65 ms
16,332 KB
testcase_16 AC 86 ms
19,212 KB
testcase_17 AC 104 ms
20,700 KB
testcase_18 AC 80 ms
12,488 KB
testcase_19 AC 103 ms
20,712 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 145 ms
25,108 KB
testcase_24 AC 55 ms
15,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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