結果

問題 No.723 2つの数の和
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-30 14:03:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,396 KB
最終ジャッジ日時 2024-10-07 06:45:17
合計ジャッジ時間 2,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 81 ms
19,316 KB
testcase_04 AC 94 ms
20,756 KB
testcase_05 AC 91 ms
20,980 KB
testcase_06 AC 92 ms
20,932 KB
testcase_07 AC 65 ms
16,296 KB
testcase_08 AC 61 ms
16,868 KB
testcase_09 AC 99 ms
20,344 KB
testcase_10 AC 58 ms
15,936 KB
testcase_11 AC 33 ms
12,032 KB
testcase_12 AC 69 ms
16,584 KB
testcase_13 AC 109 ms
20,644 KB
testcase_14 AC 45 ms
13,440 KB
testcase_15 AC 62 ms
16,324 KB
testcase_16 AC 77 ms
19,460 KB
testcase_17 AC 86 ms
20,028 KB
testcase_18 AC 51 ms
12,604 KB
testcase_19 AC 68 ms
20,960 KB
testcase_20 AC 26 ms
10,496 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 AC 100 ms
25,396 KB
testcase_24 AC 50 ms
15,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N, K = map(int, input().split())
A = list(map(int, input().split()))

c = Counter(A)
ans = 0
for k, v in c.items():
    ans += v * c[K - k]
print(ans)
0