結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
21,064 KB
testcase_01 AC 46 ms
21,296 KB
testcase_02 AC 45 ms
21,156 KB
testcase_03 AC 114 ms
24,636 KB
testcase_04 AC 134 ms
26,104 KB
testcase_05 AC 120 ms
25,724 KB
testcase_06 AC 128 ms
25,168 KB
testcase_07 AC 84 ms
22,808 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 102 ms
22,828 KB
testcase_11 AC 68 ms
21,408 KB
testcase_12 AC 93 ms
23,572 KB
testcase_13 AC 115 ms
25,536 KB
testcase_14 AC 62 ms
22,128 KB
testcase_15 AC 75 ms
22,908 KB
testcase_16 AC 90 ms
23,968 KB
testcase_17 AC 104 ms
24,820 KB
testcase_18 WA -
testcase_19 AC 106 ms
26,076 KB
testcase_20 WA -
testcase_21 AC 46 ms
21,228 KB
testcase_22 AC 47 ms
20,956 KB
testcase_23 AC 138 ms
26,116 KB
testcase_24 AC 72 ms
22,436 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