結果

問題 No.1470 Mex Sum
ユーザー lloyzlloyz
提出日時 2022-01-19 00:24:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,148 KB
最終ジャッジ日時 2024-05-02 19:39:05
合計ジャッジ時間 5,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 37 ms
11,392 KB
testcase_03 AC 32 ms
11,264 KB
testcase_04 AC 33 ms
11,264 KB
testcase_05 AC 32 ms
11,264 KB
testcase_06 AC 33 ms
11,392 KB
testcase_07 AC 34 ms
11,392 KB
testcase_08 AC 33 ms
11,392 KB
testcase_09 AC 38 ms
11,392 KB
testcase_10 AC 33 ms
11,520 KB
testcase_11 AC 32 ms
11,392 KB
testcase_12 AC 105 ms
18,132 KB
testcase_13 AC 103 ms
18,168 KB
testcase_14 AC 106 ms
18,172 KB
testcase_15 AC 106 ms
18,236 KB
testcase_16 AC 110 ms
18,024 KB
testcase_17 AC 108 ms
17,968 KB
testcase_18 AC 106 ms
17,812 KB
testcase_19 AC 109 ms
18,176 KB
testcase_20 AC 101 ms
18,008 KB
testcase_21 AC 106 ms
18,944 KB
testcase_22 AC 112 ms
18,436 KB
testcase_23 AC 108 ms
19,148 KB
testcase_24 AC 108 ms
18,412 KB
testcase_25 AC 108 ms
18,304 KB
testcase_26 AC 107 ms
18,296 KB
testcase_27 AC 113 ms
18,412 KB
testcase_28 AC 106 ms
19,036 KB
testcase_29 AC 110 ms
18,408 KB
testcase_30 AC 107 ms
18,284 KB
testcase_31 AC 109 ms
18,420 KB
testcase_32 AC 108 ms
18,424 KB
testcase_33 AC 105 ms
18,304 KB
testcase_34 AC 113 ms
19,136 KB
testcase_35 AC 113 ms
18,288 KB
testcase_36 AC 108 ms
19,132 KB
testcase_37 AC 107 ms
14,616 KB
testcase_38 AC 97 ms
14,668 KB
testcase_39 AC 89 ms
14,740 KB
testcase_40 AC 99 ms
14,808 KB
testcase_41 AC 96 ms
14,612 KB
testcase_42 AC 98 ms
14,740 KB
testcase_43 AC 102 ms
14,740 KB
testcase_44 AC 101 ms
14,740 KB
testcase_45 AC 99 ms
14,616 KB
testcase_46 AC 98 ms
14,744 KB
testcase_47 AC 103 ms
14,744 KB
testcase_48 AC 106 ms
14,744 KB
testcase_49 AC 99 ms
14,740 KB
testcase_50 AC 97 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