結果

問題 No.1470 Mex Sum
ユーザー rodearodea
提出日時 2021-04-11 12:47:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 100,520 KB
最終ジャッジ日時 2024-06-27 08:09:41
合計ジャッジ時間 6,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 54 ms
63,232 KB
testcase_03 AC 53 ms
63,616 KB
testcase_04 AC 54 ms
63,744 KB
testcase_05 AC 52 ms
63,488 KB
testcase_06 AC 51 ms
63,872 KB
testcase_07 AC 53 ms
63,872 KB
testcase_08 AC 53 ms
63,872 KB
testcase_09 AC 52 ms
63,872 KB
testcase_10 AC 52 ms
63,872 KB
testcase_11 AC 53 ms
64,000 KB
testcase_12 AC 92 ms
100,224 KB
testcase_13 AC 90 ms
99,968 KB
testcase_14 AC 93 ms
99,968 KB
testcase_15 AC 91 ms
99,840 KB
testcase_16 AC 91 ms
99,820 KB
testcase_17 AC 90 ms
99,584 KB
testcase_18 AC 91 ms
99,340 KB
testcase_19 AC 90 ms
100,224 KB
testcase_20 AC 90 ms
99,432 KB
testcase_21 AC 89 ms
99,840 KB
testcase_22 AC 90 ms
99,584 KB
testcase_23 AC 91 ms
100,352 KB
testcase_24 AC 91 ms
99,968 KB
testcase_25 AC 90 ms
99,584 KB
testcase_26 AC 91 ms
100,480 KB
testcase_27 AC 88 ms
99,840 KB
testcase_28 AC 89 ms
99,968 KB
testcase_29 AC 89 ms
100,520 KB
testcase_30 AC 92 ms
100,352 KB
testcase_31 AC 90 ms
99,712 KB
testcase_32 AC 90 ms
100,352 KB
testcase_33 AC 90 ms
99,968 KB
testcase_34 AC 90 ms
100,096 KB
testcase_35 AC 91 ms
99,712 KB
testcase_36 AC 89 ms
100,144 KB
testcase_37 AC 78 ms
96,640 KB
testcase_38 AC 80 ms
96,000 KB
testcase_39 AC 79 ms
96,512 KB
testcase_40 AC 84 ms
97,452 KB
testcase_41 AC 81 ms
97,280 KB
testcase_42 AC 83 ms
96,768 KB
testcase_43 AC 82 ms
96,896 KB
testcase_44 AC 83 ms
97,152 KB
testcase_45 AC 81 ms
97,024 KB
testcase_46 AC 82 ms
97,152 KB
testcase_47 AC 84 ms
96,512 KB
testcase_48 AC 82 ms
97,456 KB
testcase_49 AC 82 ms
97,408 KB
testcase_50 AC 83 ms
96,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = [0] * 3
for i in a:
    if i == 1:
        cnt[0] += 1
    elif i == 2:
        cnt[1] += 1
    else:
        cnt[2] += 1

print(cnt[0] * (cnt[0] - 1) // 2 * 2 + cnt[0] * cnt[1] * 3 + cnt[0] * cnt[2] * 2 + cnt[1] * (cnt[1] - 1) // 2 + cnt[1] * cnt[2] + cnt[2] * (cnt[2] - 1) // 2)
0