結果

問題 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  
実行時間 116 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,192 KB
最終ジャッジ日時 2024-04-16 12:22:31
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 93 ms
19,188 KB
testcase_04 AC 112 ms
20,748 KB
testcase_05 AC 108 ms
20,848 KB
testcase_06 AC 116 ms
20,940 KB
testcase_07 AC 66 ms
16,036 KB
testcase_08 AC 72 ms
16,992 KB
testcase_09 AC 116 ms
20,208 KB
testcase_10 AC 64 ms
16,064 KB
testcase_11 AC 37 ms
11,776 KB
testcase_12 AC 77 ms
16,332 KB
testcase_13 AC 113 ms
20,640 KB
testcase_14 AC 51 ms
13,684 KB
testcase_15 AC 68 ms
16,192 KB
testcase_16 AC 85 ms
19,200 KB
testcase_17 AC 102 ms
20,160 KB
testcase_18 AC 57 ms
12,380 KB
testcase_19 AC 74 ms
20,836 KB
testcase_20 AC 30 ms
10,496 KB
testcase_21 AC 30 ms
10,496 KB
testcase_22 AC 31 ms
10,496 KB
testcase_23 AC 114 ms
25,192 KB
testcase_24 AC 57 ms
15,148 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