結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
11,392 KB
testcase_01 AC 25 ms
11,392 KB
testcase_02 AC 26 ms
11,392 KB
testcase_03 AC 72 ms
15,540 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 75 ms
16,808 KB
testcase_07 AC 51 ms
13,696 KB
testcase_08 WA -
testcase_09 AC 75 ms
17,100 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 55 ms
14,796 KB
testcase_13 AC 68 ms
17,328 KB
testcase_14 AC 34 ms
12,800 KB
testcase_15 AC 41 ms
13,824 KB
testcase_16 AC 50 ms
15,496 KB
testcase_17 AC 59 ms
16,384 KB
testcase_18 AC 58 ms
12,648 KB
testcase_19 AC 71 ms
17,612 KB
testcase_20 AC 24 ms
11,520 KB
testcase_21 AC 25 ms
11,392 KB
testcase_22 AC 25 ms
11,392 KB
testcase_23 AC 92 ms
18,072 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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