結果

問題 No.723 2つの数の和
ユーザー santafe1006santafe1006
提出日時 2018-11-23 21:08:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,180 KB
最終ジャッジ日時 2024-06-06 23:47:23
合計ジャッジ時間 2,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,368 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 77 ms
19,316 KB
testcase_04 AC 97 ms
20,712 KB
testcase_05 AC 90 ms
21,116 KB
testcase_06 AC 95 ms
20,788 KB
testcase_07 AC 54 ms
16,172 KB
testcase_08 AC 65 ms
16,872 KB
testcase_09 AC 96 ms
20,948 KB
testcase_10 AC 56 ms
16,176 KB
testcase_11 AC 33 ms
11,776 KB
testcase_12 AC 63 ms
16,464 KB
testcase_13 AC 90 ms
20,528 KB
testcase_14 AC 41 ms
13,696 KB
testcase_15 AC 53 ms
16,332 KB
testcase_16 AC 70 ms
19,308 KB
testcase_17 AC 82 ms
20,548 KB
testcase_18 AC 64 ms
12,356 KB
testcase_19 AC 85 ms
20,716 KB
testcase_20 AC 27 ms
10,496 KB
testcase_21 AC 27 ms
10,368 KB
testcase_22 AC 27 ms
10,496 KB
testcase_23 AC 125 ms
25,180 KB
testcase_24 AC 49 ms
15,412 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