結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 87 ms
19,328 KB
testcase_04 AC 113 ms
20,756 KB
testcase_05 AC 99 ms
20,984 KB
testcase_06 AC 103 ms
20,952 KB
testcase_07 AC 61 ms
16,308 KB
testcase_08 AC 65 ms
17,088 KB
testcase_09 AC 107 ms
21,032 KB
testcase_10 AC 61 ms
16,168 KB
testcase_11 AC 34 ms
11,904 KB
testcase_12 AC 71 ms
16,440 KB
testcase_13 AC 106 ms
20,528 KB
testcase_14 AC 46 ms
13,696 KB
testcase_15 AC 61 ms
16,460 KB
testcase_16 AC 78 ms
19,392 KB
testcase_17 AC 93 ms
20,804 KB
testcase_18 AC 75 ms
12,620 KB
testcase_19 AC 95 ms
20,512 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 139 ms
25,340 KB
testcase_24 AC 52 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