結果

問題 No.723 2つの数の和
ユーザー ああいいああいい
提出日時 2021-12-04 19:32:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,716 KB
最終ジャッジ日時 2024-07-07 02:13:21
合計ジャッジ時間 3,224 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
11,520 KB
testcase_01 AC 39 ms
11,392 KB
testcase_02 AC 40 ms
11,520 KB
testcase_03 AC 80 ms
17,260 KB
testcase_04 AC 90 ms
19,972 KB
testcase_05 AC 85 ms
19,072 KB
testcase_06 AC 88 ms
18,960 KB
testcase_07 AC 63 ms
15,204 KB
testcase_08 AC 68 ms
15,468 KB
testcase_09 AC 86 ms
20,336 KB
testcase_10 AC 76 ms
15,016 KB
testcase_11 AC 54 ms
12,288 KB
testcase_12 AC 67 ms
15,852 KB
testcase_13 AC 81 ms
20,528 KB
testcase_14 AC 50 ms
13,696 KB
testcase_15 AC 58 ms
15,296 KB
testcase_16 AC 65 ms
16,664 KB
testcase_17 AC 74 ms
18,632 KB
testcase_18 AC 71 ms
12,480 KB
testcase_19 AC 86 ms
20,716 KB
testcase_20 AC 39 ms
11,520 KB
testcase_21 AC 39 ms
11,520 KB
testcase_22 AC 39 ms
11,392 KB
testcase_23 AC 103 ms
20,644 KB
testcase_24 AC 57 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X = list(map(int,input().split()))
a = list(map(int,input().split()))
C = 10 ** 5
dat = [0] * (C+1)
for i in a:
    dat[i] += 1
count = 0
for i in range(C+1):
    if 0 <= X - i <= C:
        count += dat[i] * dat[X-i]
print(count)
0