結果

問題 No.723 2つの数の和
ユーザー けむけむけむけむ
提出日時 2021-08-09 19:15:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2024-09-21 18:11:45
合計ジャッジ時間 2,966 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 91 ms
19,464 KB
testcase_04 AC 107 ms
20,860 KB
testcase_05 AC 103 ms
21,128 KB
testcase_06 AC 104 ms
20,900 KB
testcase_07 AC 61 ms
16,316 KB
testcase_08 AC 66 ms
16,888 KB
testcase_09 AC 111 ms
20,348 KB
testcase_10 AC 59 ms
16,440 KB
testcase_11 AC 36 ms
12,032 KB
testcase_12 AC 73 ms
16,608 KB
testcase_13 AC 114 ms
20,536 KB
testcase_14 AC 48 ms
13,696 KB
testcase_15 AC 63 ms
16,340 KB
testcase_16 AC 80 ms
19,340 KB
testcase_17 AC 99 ms
20,724 KB
testcase_18 AC 72 ms
12,620 KB
testcase_19 AC 94 ms
20,732 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 93 ms
25,344 KB
testcase_24 AC 53 ms
15,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

def calc(N, X, a):
    cnt = 0
    b = Counter(a)
    for i in range(N):
        cnt += b[X - a[i]]
    return cnt

def main():
    N, X = map(int, input().split())
    a = list(map(int, input().split()))
    print(calc(N, X, a))

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