結果

問題 No.723 2つの数の和
ユーザー YamadaYamada
提出日時 2019-01-13 03:20:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 303 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 26,008 KB
最終ジャッジ日時 2024-12-24 00:15:04
合計ジャッジ時間 3,798 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
20,956 KB
testcase_01 AC 53 ms
20,956 KB
testcase_02 AC 53 ms
21,080 KB
testcase_03 AC 137 ms
24,628 KB
testcase_04 AC 160 ms
26,008 KB
testcase_05 AC 139 ms
25,504 KB
testcase_06 AC 152 ms
25,136 KB
testcase_07 AC 102 ms
22,852 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 120 ms
22,544 KB
testcase_11 AC 79 ms
21,288 KB
testcase_12 AC 107 ms
23,456 KB
testcase_13 AC 135 ms
25,276 KB
testcase_14 AC 72 ms
22,020 KB
testcase_15 AC 90 ms
22,820 KB
testcase_16 AC 107 ms
23,796 KB
testcase_17 AC 126 ms
24,700 KB
testcase_18 WA -
testcase_19 AC 122 ms
25,868 KB
testcase_20 WA -
testcase_21 AC 55 ms
20,932 KB
testcase_22 AC 55 ms
21,080 KB
testcase_23 AC 158 ms
25,928 KB
testcase_24 AC 83 ms
22,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X =map(int,input().split())
l =[int(i) for i in input().split()]
d ={i:0 for i in range(10**5+1)}
n = 0
for i in l:
    d[i] += 1
if X > max(l)*2:
    n = 0
elif X > 10**5:
    for i in range(X-10**5,10**5+1):
        n += d[i] * d[X-i]
else:
    for i in range(X):
        n += d[i] * d[X-i]
print(n)
0