結果

問題 No.723 2つの数の和
ユーザー はむ吉🐹はむ吉🐹
提出日時 2018-08-03 22:54:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-09-19 17:35:51
合計ジャッジ時間 2,605 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 75 ms
19,352 KB
testcase_04 AC 91 ms
19,860 KB
testcase_05 AC 88 ms
21,128 KB
testcase_06 AC 87 ms
20,888 KB
testcase_07 AC 54 ms
16,316 KB
testcase_08 AC 56 ms
16,892 KB
testcase_09 AC 96 ms
21,048 KB
testcase_10 AC 52 ms
16,192 KB
testcase_11 AC 33 ms
11,904 KB
testcase_12 AC 66 ms
16,512 KB
testcase_13 AC 101 ms
20,540 KB
testcase_14 AC 43 ms
13,696 KB
testcase_15 AC 56 ms
16,340 KB
testcase_16 AC 69 ms
19,432 KB
testcase_17 AC 82 ms
20,596 KB
testcase_18 AC 60 ms
12,496 KB
testcase_19 AC 81 ms
20,852 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 83 ms
25,216 KB
testcase_24 AC 45 ms
15,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import collections


def count_pairs(n, x, ys):
    ctr = collections.Counter(ys)
    res = sum(ctr[x - y] for y in ys)
    return res


def main():
    n, x = (int(z) for z in input().split())
    ys = [int(y) for y in input().split()]
    res = count_pairs(n, x, ys)
    print(res)


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