結果

問題 No.1470 Mex Sum
ユーザー netyo715netyo715
提出日時 2021-04-09 22:06:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,144 KB
最終ジャッジ日時 2024-06-25 05:35:13
合計ジャッジ時間 10,422 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 50 ms
11,392 KB
testcase_03 AC 52 ms
11,392 KB
testcase_04 AC 48 ms
11,392 KB
testcase_05 AC 49 ms
11,520 KB
testcase_06 AC 48 ms
11,520 KB
testcase_07 AC 49 ms
11,392 KB
testcase_08 AC 50 ms
11,392 KB
testcase_09 AC 51 ms
11,392 KB
testcase_10 AC 50 ms
11,392 KB
testcase_11 AC 49 ms
11,392 KB
testcase_12 AC 207 ms
17,872 KB
testcase_13 AC 202 ms
17,900 KB
testcase_14 AC 202 ms
18,040 KB
testcase_15 AC 206 ms
17,972 KB
testcase_16 AC 207 ms
18,060 KB
testcase_17 AC 201 ms
17,840 KB
testcase_18 AC 200 ms
17,936 KB
testcase_19 AC 204 ms
18,028 KB
testcase_20 AC 205 ms
17,884 KB
testcase_21 AC 209 ms
18,936 KB
testcase_22 AC 208 ms
18,180 KB
testcase_23 AC 210 ms
19,144 KB
testcase_24 AC 209 ms
18,412 KB
testcase_25 AC 211 ms
18,420 KB
testcase_26 AC 211 ms
18,288 KB
testcase_27 AC 209 ms
18,280 KB
testcase_28 AC 208 ms
18,220 KB
testcase_29 AC 210 ms
18,420 KB
testcase_30 AC 212 ms
18,412 KB
testcase_31 AC 214 ms
18,156 KB
testcase_32 AC 214 ms
18,164 KB
testcase_33 AC 213 ms
18,164 KB
testcase_34 AC 211 ms
18,308 KB
testcase_35 AC 209 ms
18,148 KB
testcase_36 AC 209 ms
18,312 KB
testcase_37 AC 197 ms
14,744 KB
testcase_38 AC 195 ms
14,484 KB
testcase_39 AC 196 ms
14,736 KB
testcase_40 AC 198 ms
14,608 KB
testcase_41 AC 196 ms
14,484 KB
testcase_42 AC 198 ms
14,616 KB
testcase_43 AC 204 ms
14,488 KB
testcase_44 AC 196 ms
14,480 KB
testcase_45 AC 198 ms
14,740 KB
testcase_46 AC 198 ms
14,612 KB
testcase_47 AC 200 ms
14,592 KB
testcase_48 AC 196 ms
14,708 KB
testcase_49 AC 198 ms
14,736 KB
testcase_50 AC 199 ms
14,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
A = list(map(int, input().split()))
ac = Counter()
for a in A:
    ac[min(3, a)] += 1

ans = 0
ans += ((ac[1]**2)-ac[1])//2 * 2
ans += ((ac[2]**2)-ac[2])//2
ans += ((ac[3]**2)-ac[3])//2
ans += ac[1]*ac[2] * 3
ans += ac[1]*ac[3] * 2
ans += ac[2]*ac[3]

print(ans)
0