結果

問題 No.723 2つの数の和
ユーザー kept1994kept1994
提出日時 2021-09-02 23:31:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-11-30 14:55:34
合計ジャッジ時間 2,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 67 ms
74,880 KB
testcase_04 AC 72 ms
80,384 KB
testcase_05 AC 71 ms
78,592 KB
testcase_06 AC 72 ms
79,360 KB
testcase_07 AC 60 ms
68,096 KB
testcase_08 AC 62 ms
69,888 KB
testcase_09 AC 73 ms
80,768 KB
testcase_10 AC 59 ms
67,968 KB
testcase_11 AC 52 ms
62,208 KB
testcase_12 AC 63 ms
71,552 KB
testcase_13 AC 43 ms
51,712 KB
testcase_14 AC 42 ms
51,712 KB
testcase_15 AC 42 ms
51,456 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 42 ms
52,096 KB
testcase_18 AC 68 ms
78,080 KB
testcase_19 AC 72 ms
80,896 KB
testcase_20 AC 43 ms
52,992 KB
testcase_21 AC 42 ms
52,608 KB
testcase_22 AC 42 ms
52,736 KB
testcase_23 AC 71 ms
80,512 KB
testcase_24 AC 58 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N, X = map(int, input().split())
    if X > 2 * 10 ** 5:
        print(0)
        return
    A = list(map(int, input().split()))
    num = [0] * (10 ** 5 + 1)
    ans = 0
    for aa in A:
        num[aa] += 1
    for aa in A:
        if X - aa < 0 or X - aa > 10 ** 5:
            continue
        ans += num[X - aa]
    print(ans)
    return

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