結果

問題 No.1470 Mex Sum
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-04-09 21:29:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 101,204 KB
最終ジャッジ日時 2024-06-25 04:11:58
合計ジャッジ時間 5,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,912 KB
testcase_01 AC 39 ms
53,492 KB
testcase_02 AC 46 ms
65,144 KB
testcase_03 AC 49 ms
64,036 KB
testcase_04 AC 45 ms
65,544 KB
testcase_05 AC 46 ms
63,500 KB
testcase_06 AC 47 ms
65,704 KB
testcase_07 AC 45 ms
64,432 KB
testcase_08 AC 45 ms
65,816 KB
testcase_09 AC 45 ms
65,128 KB
testcase_10 AC 45 ms
63,820 KB
testcase_11 AC 45 ms
64,732 KB
testcase_12 AC 80 ms
100,328 KB
testcase_13 AC 81 ms
99,732 KB
testcase_14 AC 81 ms
100,064 KB
testcase_15 AC 80 ms
100,972 KB
testcase_16 AC 82 ms
100,444 KB
testcase_17 AC 81 ms
99,148 KB
testcase_18 AC 81 ms
98,940 KB
testcase_19 AC 82 ms
99,500 KB
testcase_20 AC 80 ms
100,028 KB
testcase_21 AC 81 ms
99,656 KB
testcase_22 AC 82 ms
99,916 KB
testcase_23 AC 82 ms
99,836 KB
testcase_24 AC 81 ms
99,376 KB
testcase_25 AC 80 ms
99,980 KB
testcase_26 AC 81 ms
100,168 KB
testcase_27 AC 82 ms
99,704 KB
testcase_28 AC 82 ms
101,076 KB
testcase_29 AC 82 ms
101,204 KB
testcase_30 AC 82 ms
99,772 KB
testcase_31 AC 81 ms
100,208 KB
testcase_32 AC 81 ms
100,292 KB
testcase_33 AC 80 ms
99,764 KB
testcase_34 AC 81 ms
99,440 KB
testcase_35 AC 81 ms
100,612 KB
testcase_36 AC 81 ms
100,876 KB
testcase_37 AC 72 ms
97,580 KB
testcase_38 AC 74 ms
96,252 KB
testcase_39 AC 72 ms
96,124 KB
testcase_40 AC 77 ms
97,632 KB
testcase_41 AC 76 ms
97,512 KB
testcase_42 AC 77 ms
97,632 KB
testcase_43 AC 76 ms
98,860 KB
testcase_44 AC 76 ms
97,584 KB
testcase_45 AC 76 ms
99,108 KB
testcase_46 AC 76 ms
97,296 KB
testcase_47 AC 76 ms
98,160 KB
testcase_48 AC 76 ms
96,816 KB
testcase_49 AC 75 ms
97,656 KB
testcase_50 AC 74 ms
97,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""


"""

import sys
from sys import stdin

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))

one = 0
two = 0
other = 0

for i in A:
    if i == 2:
        two += 1
    elif i == 1:
        one += 1
    else:
        other += 1

ans = 0
ans += 2 * (one * (one-1)//2)
ans += 2 * (one * other)
ans += 3 * (one * two)
ans += 1 * ( N*(N-1)//2 - one * (one-1)//2 - one * two - one * other)
print (ans)
0