結果

問題 No.723 2つの数の和
ユーザー santafe1006santafe1006
提出日時 2018-11-23 21:08:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 781 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 25,356 KB
最終ジャッジ日時 2024-12-24 18:53:47
合計ジャッジ時間 3,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 97 ms
20,320 KB
testcase_04 AC 113 ms
20,508 KB
testcase_05 AC 109 ms
20,864 KB
testcase_06 AC 116 ms
20,664 KB
testcase_07 AC 64 ms
16,040 KB
testcase_08 AC 71 ms
17,000 KB
testcase_09 AC 112 ms
20,824 KB
testcase_10 AC 65 ms
15,920 KB
testcase_11 AC 39 ms
11,776 KB
testcase_12 AC 78 ms
16,596 KB
testcase_13 AC 118 ms
20,528 KB
testcase_14 AC 52 ms
13,688 KB
testcase_15 AC 66 ms
16,328 KB
testcase_16 AC 84 ms
19,148 KB
testcase_17 AC 99 ms
20,568 KB
testcase_18 AC 74 ms
12,356 KB
testcase_19 AC 97 ms
20,712 KB
testcase_20 AC 32 ms
10,496 KB
testcase_21 AC 31 ms
10,368 KB
testcase_22 AC 33 ms
10,496 KB
testcase_23 AC 140 ms
25,356 KB
testcase_24 AC 55 ms
15,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x = map(int,input().split())
num = list(map(int,input().split()))
a = {}
k = 0
for i in num :
    if i in a :
        a[i] += 1
    else :
        a[i] = 1

for j in a :
    if x - j in a :
        k += a[j]*a[x-j]

print(k)
0