結果

問題 No.1470 Mex Sum
ユーザー lloyzlloyz
提出日時 2022-01-19 00:24:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 19,132 KB
最終ジャッジ日時 2024-11-23 13:38:48
合計ジャッジ時間 6,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 37 ms
11,264 KB
testcase_03 AC 37 ms
11,136 KB
testcase_04 AC 37 ms
11,392 KB
testcase_05 AC 37 ms
11,264 KB
testcase_06 AC 37 ms
11,392 KB
testcase_07 AC 38 ms
11,264 KB
testcase_08 AC 37 ms
11,264 KB
testcase_09 AC 39 ms
11,136 KB
testcase_10 AC 38 ms
11,392 KB
testcase_11 AC 38 ms
11,264 KB
testcase_12 AC 118 ms
18,004 KB
testcase_13 AC 118 ms
17,908 KB
testcase_14 AC 116 ms
18,048 KB
testcase_15 AC 118 ms
18,236 KB
testcase_16 AC 115 ms
18,024 KB
testcase_17 AC 115 ms
17,840 KB
testcase_18 AC 114 ms
17,824 KB
testcase_19 AC 116 ms
18,020 KB
testcase_20 AC 119 ms
18,008 KB
testcase_21 AC 120 ms
18,808 KB
testcase_22 AC 121 ms
18,316 KB
testcase_23 AC 121 ms
19,020 KB
testcase_24 AC 122 ms
18,296 KB
testcase_25 AC 123 ms
18,428 KB
testcase_26 AC 119 ms
18,296 KB
testcase_27 AC 122 ms
18,284 KB
testcase_28 AC 120 ms
19,132 KB
testcase_29 AC 120 ms
18,420 KB
testcase_30 AC 120 ms
18,292 KB
testcase_31 AC 118 ms
18,296 KB
testcase_32 AC 120 ms
18,296 KB
testcase_33 AC 120 ms
18,428 KB
testcase_34 AC 120 ms
19,004 KB
testcase_35 AC 121 ms
18,156 KB
testcase_36 AC 119 ms
18,964 KB
testcase_37 AC 113 ms
14,744 KB
testcase_38 AC 111 ms
14,612 KB
testcase_39 AC 102 ms
14,484 KB
testcase_40 AC 113 ms
14,612 KB
testcase_41 AC 112 ms
14,612 KB
testcase_42 AC 109 ms
14,616 KB
testcase_43 AC 113 ms
14,612 KB
testcase_44 AC 112 ms
14,616 KB
testcase_45 AC 110 ms
14,740 KB
testcase_46 AC 113 ms
14,616 KB
testcase_47 AC 111 ms
14,616 KB
testcase_48 AC 112 ms
14,612 KB
testcase_49 AC 112 ms
14,740 KB
testcase_50 AC 111 ms
14,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

L = [0, 0, 0, 0]
for i in range(n):
    if A[i] <= 2:
        L[A[i]] += 1
    else:
        L[3] += 1

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