結果

問題 No.723 2つの数の和
ユーザー tamatotamato
提出日時 2020-02-28 02:41:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-10-13 16:18:06
合計ジャッジ時間 3,325 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,880 KB
testcase_01 AC 41 ms
58,880 KB
testcase_02 AC 40 ms
59,008 KB
testcase_03 AC 81 ms
86,656 KB
testcase_04 AC 81 ms
94,336 KB
testcase_05 AC 77 ms
91,904 KB
testcase_06 AC 77 ms
92,544 KB
testcase_07 AC 60 ms
75,656 KB
testcase_08 AC 65 ms
77,824 KB
testcase_09 AC 84 ms
94,464 KB
testcase_10 AC 66 ms
74,752 KB
testcase_11 AC 50 ms
64,896 KB
testcase_12 AC 68 ms
80,512 KB
testcase_13 AC 81 ms
93,952 KB
testcase_14 AC 53 ms
69,760 KB
testcase_15 AC 60 ms
76,160 KB
testcase_16 AC 68 ms
84,096 KB
testcase_17 AC 76 ms
89,472 KB
testcase_18 AC 64 ms
80,640 KB
testcase_19 AC 61 ms
83,328 KB
testcase_20 AC 41 ms
59,008 KB
testcase_21 AC 42 ms
59,008 KB
testcase_22 AC 43 ms
59,264 KB
testcase_23 AC 77 ms
98,560 KB
testcase_24 AC 56 ms
72,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    from collections import Counter
    input = sys.stdin.readline

    N, x = map(int, input().split())
    A = list(map(int, input().split()))

    C = Counter(A)
    ans = 0
    for i in range(10**5+1):
        if i in C and x-i in C:
            ans += C[i] * C[x-i]
    print(ans)


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