結果

問題 No.723 2つの数の和
ユーザー ye110wye110w
提出日時 2019-06-03 12:44:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,396 KB
最終ジャッジ日時 2024-09-17 20:24:17
合計ジャッジ時間 2,558 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 83 ms
19,580 KB
testcase_04 AC 104 ms
20,888 KB
testcase_05 AC 92 ms
21,196 KB
testcase_06 AC 99 ms
20,828 KB
testcase_07 AC 55 ms
16,300 KB
testcase_08 AC 60 ms
17,004 KB
testcase_09 AC 100 ms
20,208 KB
testcase_10 AC 55 ms
16,300 KB
testcase_11 AC 32 ms
11,904 KB
testcase_12 AC 66 ms
16,592 KB
testcase_13 AC 101 ms
20,656 KB
testcase_14 AC 41 ms
13,688 KB
testcase_15 AC 54 ms
16,460 KB
testcase_16 AC 73 ms
19,452 KB
testcase_17 AC 85 ms
20,732 KB
testcase_18 AC 92 ms
12,740 KB
testcase_19 AC 117 ms
20,696 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 AC 109 ms
25,396 KB
testcase_24 AC 47 ms
15,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
a_list = list(map(int, input().split()))

number_count = {}
for a in a_list:
    if a in number_count:
        number_count[a] = number_count[a] + 1
    else:
        number_count[a] = 1

count = 0
for a in a_list:
    j = x - a
    if j not in number_count:
        continue
    count = count + number_count[j]

print(count)
0