結果

問題 No.723 2つの数の和
ユーザー YamadaYamada
提出日時 2019-01-16 01:12:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,264 KB
最終ジャッジ日時 2024-06-26 10:03:29
合計ジャッジ時間 3,100 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,520 KB
testcase_01 AC 31 ms
11,520 KB
testcase_02 AC 30 ms
11,520 KB
testcase_03 WA -
testcase_04 AC 83 ms
17,592 KB
testcase_05 WA -
testcase_06 AC 81 ms
17,052 KB
testcase_07 WA -
testcase_08 AC 57 ms
14,728 KB
testcase_09 WA -
testcase_10 AC 61 ms
13,876 KB
testcase_11 AC 41 ms
12,032 KB
testcase_12 WA -
testcase_13 AC 79 ms
17,488 KB
testcase_14 AC 43 ms
13,056 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 68 ms
16,952 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 30 ms
11,520 KB
testcase_23 WA -
testcase_24 AC 45 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X =map(int,input().split())
l =[0]*(10**5+1)
for i in input().split():
    l[int(i)] += 1
ans = 0
for i in range(max(0,X-10**5),min(10**5+1,(X+2)//2)):
    ans += l[i]*l[X-i]*2
ans -= l[(N+2)//2]**2
print(ans)
0