結果

問題 No.723 2つの数の和
ユーザー tails1434tails1434
提出日時 2020-01-15 21:52:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 104,448 KB
最終ジャッジ日時 2024-06-11 21:56:50
合計ジャッジ時間 3,753 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 44 ms
54,144 KB
testcase_03 AC 92 ms
92,416 KB
testcase_04 AC 107 ms
99,968 KB
testcase_05 AC 105 ms
99,712 KB
testcase_06 AC 105 ms
98,048 KB
testcase_07 AC 78 ms
81,920 KB
testcase_08 AC 78 ms
83,456 KB
testcase_09 AC 113 ms
102,656 KB
testcase_10 AC 76 ms
80,640 KB
testcase_11 AC 59 ms
66,304 KB
testcase_12 AC 85 ms
87,552 KB
testcase_13 AC 112 ms
104,448 KB
testcase_14 AC 69 ms
74,368 KB
testcase_15 AC 78 ms
83,840 KB
testcase_16 AC 91 ms
91,904 KB
testcase_17 AC 101 ms
99,456 KB
testcase_18 AC 69 ms
81,408 KB
testcase_19 AC 71 ms
83,840 KB
testcase_20 AC 44 ms
53,376 KB
testcase_21 AC 45 ms
53,632 KB
testcase_22 AC 45 ms
53,632 KB
testcase_23 AC 92 ms
99,584 KB
testcase_24 AC 71 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def main():
    N, X = map(int, input().split())
    A = list(map(int, input().split()))
    d = defaultdict(int)
    for a in A:
        d[a] += 1
    ans = 0
    for a in A:
        tmp = X - a
        ans += d[tmp]
    print(ans)



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