結果

問題 No.1470 Mex Sum
ユーザー ThetaTheta
提出日時 2022-10-12 19:33:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,152 KB
最終ジャッジ日時 2024-06-26 11:27:52
合計ジャッジ時間 5,383 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 35 ms
11,392 KB
testcase_03 AC 34 ms
11,392 KB
testcase_04 AC 35 ms
11,392 KB
testcase_05 AC 34 ms
11,392 KB
testcase_06 AC 35 ms
11,392 KB
testcase_07 AC 34 ms
11,392 KB
testcase_08 AC 34 ms
11,392 KB
testcase_09 AC 35 ms
11,392 KB
testcase_10 AC 33 ms
11,648 KB
testcase_11 AC 34 ms
11,392 KB
testcase_12 AC 83 ms
18,132 KB
testcase_13 AC 83 ms
18,160 KB
testcase_14 AC 84 ms
18,044 KB
testcase_15 AC 84 ms
18,116 KB
testcase_16 AC 82 ms
18,148 KB
testcase_17 AC 81 ms
17,972 KB
testcase_18 AC 81 ms
18,064 KB
testcase_19 AC 82 ms
18,144 KB
testcase_20 AC 82 ms
18,008 KB
testcase_21 AC 84 ms
19,064 KB
testcase_22 AC 85 ms
18,440 KB
testcase_23 AC 86 ms
19,152 KB
testcase_24 AC 86 ms
18,416 KB
testcase_25 AC 85 ms
18,428 KB
testcase_26 AC 83 ms
18,420 KB
testcase_27 AC 86 ms
18,380 KB
testcase_28 AC 86 ms
19,128 KB
testcase_29 AC 87 ms
18,428 KB
testcase_30 AC 85 ms
18,416 KB
testcase_31 AC 84 ms
18,424 KB
testcase_32 AC 85 ms
18,420 KB
testcase_33 AC 83 ms
18,424 KB
testcase_34 AC 84 ms
19,128 KB
testcase_35 AC 84 ms
18,284 KB
testcase_36 AC 82 ms
19,136 KB
testcase_37 AC 69 ms
14,736 KB
testcase_38 AC 67 ms
14,736 KB
testcase_39 AC 70 ms
14,656 KB
testcase_40 AC 72 ms
14,740 KB
testcase_41 AC 74 ms
14,740 KB
testcase_42 AC 73 ms
14,732 KB
testcase_43 AC 72 ms
14,736 KB
testcase_44 AC 71 ms
14,736 KB
testcase_45 AC 71 ms
14,608 KB
testcase_46 AC 73 ms
14,736 KB
testcase_47 AC 72 ms
14,736 KB
testcase_48 AC 74 ms
14,740 KB
testcase_49 AC 73 ms
14,740 KB
testcase_50 AC 70 ms
14,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = list(map(int, input().split()))
    num_1_in_A = A.count(1)
    num_2_in_A = A.count(2)
    num_other_in_A = N - num_1_in_A - num_2_in_A

    sum_mex = 0

    if num_1_in_A > 1:
        sum_mex += num_1_in_A * (num_1_in_A - 1)
    sum_mex += 3 * num_1_in_A * num_2_in_A
    sum_mex += 2 * num_1_in_A * num_other_in_A

    if num_2_in_A > 1:
        sum_mex += num_2_in_A * (num_2_in_A - 1) // 2
    sum_mex += num_2_in_A * num_other_in_A

    if num_other_in_A > 1:
        sum_mex += num_other_in_A * (num_other_in_A - 1) // 2

    print(sum_mex)


if __name__ == "__main__":
    main()
0