結果

問題 No.723 2つの数の和
ユーザー NoaSaberNoaSaber
提出日時 2021-03-19 20:56:01
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 168 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 174,976 KB
最終ジャッジ日時 2024-11-18 20:17:31
合計ジャッジ時間 16,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,880 KB
testcase_01 AC 44 ms
148,608 KB
testcase_02 AC 45 ms
58,496 KB
testcase_03 AC 98 ms
159,232 KB
testcase_04 AC 119 ms
104,832 KB
testcase_05 AC 118 ms
174,976 KB
testcase_06 AC 100 ms
99,840 KB
testcase_07 AC 81 ms
77,952 KB
testcase_08 AC 82 ms
79,616 KB
testcase_09 AC 101 ms
96,768 KB
testcase_10 AC 88 ms
79,488 KB
testcase_11 AC 64 ms
66,176 KB
testcase_12 AC 84 ms
82,688 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 1,639 ms
85,760 KB
testcase_17 TLE -
testcase_18 AC 72 ms
80,256 KB
testcase_19 AC 87 ms
86,656 KB
testcase_20 AC 45 ms
53,248 KB
testcase_21 AC 45 ms
53,376 KB
testcase_22 AC 45 ms
53,248 KB
testcase_23 AC 93 ms
99,072 KB
testcase_24 AC 85 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())
a=list(map(int,input().split()))
from collections import Counter
a=Counter(a)
ans=0
for i in range(X+1):
   ans+=a[i]*a[X-i]
print(ans)
   
0