結果

問題 No.723 2つの数の和
ユーザー kept1994kept1994
提出日時 2021-09-02 23:31:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 83,140 KB
最終ジャッジ日時 2024-05-07 19:30:50
合計ジャッジ時間 2,664 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,620 KB
testcase_01 AC 36 ms
52,984 KB
testcase_02 AC 35 ms
53,264 KB
testcase_03 AC 54 ms
75,968 KB
testcase_04 AC 58 ms
81,792 KB
testcase_05 AC 60 ms
78,836 KB
testcase_06 AC 57 ms
79,844 KB
testcase_07 AC 46 ms
69,680 KB
testcase_08 AC 47 ms
69,744 KB
testcase_09 AC 62 ms
81,348 KB
testcase_10 AC 55 ms
68,460 KB
testcase_11 AC 46 ms
63,416 KB
testcase_12 AC 53 ms
71,944 KB
testcase_13 AC 33 ms
51,876 KB
testcase_14 AC 33 ms
52,696 KB
testcase_15 AC 32 ms
52,532 KB
testcase_16 AC 33 ms
51,824 KB
testcase_17 AC 34 ms
52,312 KB
testcase_18 AC 56 ms
78,576 KB
testcase_19 AC 59 ms
83,140 KB
testcase_20 AC 34 ms
53,584 KB
testcase_21 AC 35 ms
53,656 KB
testcase_22 AC 35 ms
54,636 KB
testcase_23 AC 57 ms
82,700 KB
testcase_24 AC 45 ms
67,980 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