結果

問題 No.723 2つの数の和
ユーザー _polarbear08_polarbear08
提出日時 2018-08-03 23:02:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,680 KB
最終ジャッジ日時 2024-09-19 17:38:06
合計ジャッジ時間 2,899 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 102 ms
19,324 KB
testcase_04 AC 123 ms
19,972 KB
testcase_05 AC 115 ms
20,392 KB
testcase_06 AC 118 ms
20,820 KB
testcase_07 AC 67 ms
16,040 KB
testcase_08 AC 74 ms
16,968 KB
testcase_09 AC 125 ms
20,344 KB
testcase_10 AC 65 ms
16,072 KB
testcase_11 AC 37 ms
11,776 KB
testcase_12 AC 79 ms
16,532 KB
testcase_13 AC 126 ms
20,648 KB
testcase_14 AC 50 ms
13,688 KB
testcase_15 AC 67 ms
16,324 KB
testcase_16 AC 88 ms
19,328 KB
testcase_17 AC 108 ms
20,164 KB
testcase_18 AC 81 ms
12,608 KB
testcase_19 AC 104 ms
20,708 KB
testcase_20 AC 30 ms
10,496 KB
testcase_21 AC 29 ms
10,496 KB
testcase_22 AC 29 ms
10,496 KB
testcase_23 AC 106 ms
24,680 KB
testcase_24 AC 56 ms
15,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N,X = map(int, input().split())
A = list(map(int, input().split()))

cnt = Counter(A)

ans = 0
for a in A:
    ans += cnt[X-a]

print(ans)
0