結果

問題 No.723 2つの数の和
ユーザー ThetaTheta
提出日時 2022-10-18 15:08:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 28,916 KB
最終ジャッジ日時 2024-06-28 23:11:53
合計ジャッジ時間 3,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 113 ms
23,996 KB
testcase_04 AC 149 ms
24,576 KB
testcase_05 AC 143 ms
25,556 KB
testcase_06 AC 140 ms
25,020 KB
testcase_07 AC 80 ms
19,660 KB
testcase_08 AC 86 ms
20,364 KB
testcase_09 AC 139 ms
24,708 KB
testcase_10 AC 79 ms
19,492 KB
testcase_11 AC 39 ms
12,644 KB
testcase_12 AC 91 ms
19,508 KB
testcase_13 AC 172 ms
24,588 KB
testcase_14 AC 64 ms
16,800 KB
testcase_15 AC 91 ms
19,432 KB
testcase_16 AC 123 ms
23,520 KB
testcase_17 AC 143 ms
24,416 KB
testcase_18 AC 63 ms
12,516 KB
testcase_19 AC 85 ms
20,628 KB
testcase_20 AC 28 ms
10,496 KB
testcase_21 AC 28 ms
10,496 KB
testcase_22 AC 27 ms
10,496 KB
testcase_23 AC 119 ms
28,916 KB
testcase_24 AC 72 ms
18,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def main():
    N, X = map(int, input().split())
    A = list(map(int, input().split()))
    A.sort()
    counter_A = defaultdict(int)

    for num in A:
        counter_A[num] += 1
        counter_A[X-num]

    A_unique_list = sorted(set(A))

    patterns = 0
    for num in A_unique_list:
        if num > X - num:
            break

        if num == X - num:
            patterns += counter_A[num] ** 2
            break

        patterns += counter_A[num] * counter_A[X - num] * 2

    print(patterns)


if __name__ == "__main__":
    main()
0