結果

問題 No.723 2つの数の和
ユーザー sekihankamibanzsekihankamibanz
提出日時 2018-10-28 16:52:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,400 KB
最終ジャッジ日時 2024-04-29 22:29:31
合計ジャッジ時間 2,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 95 ms
19,452 KB
testcase_04 AC 126 ms
20,712 KB
testcase_05 AC 106 ms
21,080 KB
testcase_06 AC 111 ms
20,956 KB
testcase_07 AC 64 ms
16,180 KB
testcase_08 AC 70 ms
17,216 KB
testcase_09 AC 114 ms
21,076 KB
testcase_10 AC 64 ms
16,168 KB
testcase_11 AC 36 ms
12,032 KB
testcase_12 AC 77 ms
16,468 KB
testcase_13 AC 114 ms
20,560 KB
testcase_14 AC 50 ms
13,816 KB
testcase_15 AC 64 ms
16,464 KB
testcase_16 AC 83 ms
19,348 KB
testcase_17 AC 99 ms
20,708 KB
testcase_18 AC 79 ms
12,496 KB
testcase_19 AC 99 ms
20,724 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 138 ms
25,400 KB
testcase_24 AC 54 ms
15,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n, X = [int(x) for x in input().split(' ')]
nums = [int(x) for x in input().split(' ')]

nums_count = {}
count = 0

for i in nums:
    if i in nums_count:
        nums_count[i] += 1
    
    else:
        nums_count[i] = 1

for i in nums_count.keys():
    x = X - i
    
    if x in nums_count:
        count += nums_count[i] * nums_count[x]

print(count)
0