結果

問題 No.723 2つの数の和
ユーザー kerotonokerotono
提出日時 2018-08-03 22:50:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,004 KB
最終ジャッジ日時 2024-09-19 17:34:33
合計ジャッジ時間 2,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,520 KB
testcase_01 AC 33 ms
11,520 KB
testcase_02 AC 31 ms
11,648 KB
testcase_03 AC 62 ms
17,436 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 76 ms
19,116 KB
testcase_07 AC 52 ms
15,224 KB
testcase_08 AC 55 ms
16,004 KB
testcase_09 AC 73 ms
20,344 KB
testcase_10 WA -
testcase_11 AC 40 ms
12,416 KB
testcase_12 AC 55 ms
15,884 KB
testcase_13 AC 66 ms
20,688 KB
testcase_14 AC 39 ms
13,696 KB
testcase_15 AC 45 ms
15,324 KB
testcase_16 AC 53 ms
16,820 KB
testcase_17 AC 61 ms
18,848 KB
testcase_18 AC 57 ms
12,632 KB
testcase_19 WA -
testcase_20 AC 30 ms
11,520 KB
testcase_21 AC 31 ms
11,520 KB
testcase_22 AC 30 ms
11,520 KB
testcase_23 AC 80 ms
20,676 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!python
# -*- coding: utf-8 -*-


MAX = 10**5 + 10


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

    b = [0 for i in range(MAX)]
    for i in range(N):
        b[A[i]] += 1

    ANS = 0
    for i in range(MAX):
        j = X - i
        if not 0 <= j <= MAX:
            break
        ANS += b[i] * b[j]

    print(ANS)


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