結果

問題 No.1470 Mex Sum
ユーザー MitarushiMitarushi
提出日時 2021-01-07 20:45:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 93,336 KB
最終ジャッジ日時 2024-11-14 01:17:20
合計ジャッジ時間 6,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,000 KB
testcase_01 AC 37 ms
52,552 KB
testcase_02 AC 58 ms
73,864 KB
testcase_03 AC 58 ms
74,248 KB
testcase_04 AC 55 ms
74,452 KB
testcase_05 AC 57 ms
74,364 KB
testcase_06 AC 56 ms
74,280 KB
testcase_07 AC 54 ms
73,496 KB
testcase_08 AC 55 ms
74,428 KB
testcase_09 AC 56 ms
74,284 KB
testcase_10 AC 55 ms
74,704 KB
testcase_11 AC 54 ms
74,140 KB
testcase_12 AC 101 ms
92,736 KB
testcase_13 AC 101 ms
92,460 KB
testcase_14 AC 104 ms
92,376 KB
testcase_15 AC 106 ms
92,412 KB
testcase_16 AC 104 ms
92,620 KB
testcase_17 AC 105 ms
92,696 KB
testcase_18 AC 103 ms
92,536 KB
testcase_19 AC 107 ms
92,588 KB
testcase_20 AC 105 ms
92,436 KB
testcase_21 AC 105 ms
92,424 KB
testcase_22 AC 109 ms
92,920 KB
testcase_23 AC 109 ms
92,744 KB
testcase_24 AC 104 ms
92,596 KB
testcase_25 AC 108 ms
92,800 KB
testcase_26 AC 107 ms
92,612 KB
testcase_27 AC 106 ms
92,800 KB
testcase_28 AC 107 ms
92,912 KB
testcase_29 AC 109 ms
92,844 KB
testcase_30 AC 107 ms
92,776 KB
testcase_31 AC 106 ms
92,656 KB
testcase_32 AC 107 ms
93,336 KB
testcase_33 AC 104 ms
92,460 KB
testcase_34 AC 107 ms
92,780 KB
testcase_35 AC 107 ms
92,384 KB
testcase_36 AC 106 ms
92,588 KB
testcase_37 AC 107 ms
91,536 KB
testcase_38 AC 87 ms
91,604 KB
testcase_39 AC 86 ms
91,776 KB
testcase_40 AC 102 ms
91,932 KB
testcase_41 AC 103 ms
91,652 KB
testcase_42 AC 101 ms
91,624 KB
testcase_43 AC 102 ms
91,796 KB
testcase_44 AC 100 ms
91,776 KB
testcase_45 AC 101 ms
91,592 KB
testcase_46 AC 102 ms
91,788 KB
testcase_47 AC 104 ms
91,980 KB
testcase_48 AC 108 ms
91,760 KB
testcase_49 AC 102 ms
91,580 KB
testcase_50 AC 102 ms
91,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(i) for i in input().split()]
d = dict()


def mex(x, y):
    a = {x, y}
    i = 1
    while True:
        if i not in a:
            return i
        i += 1


for i in a:
    i = min(i, 3)
    if i in d:
        d[i] += 1
    else:
        d[i] = 1

ans = 0
for x, i in d.items():
    for y, j in d.items():
        ans += i*j*mex(x, y)
for i in a:
    ans -= mex(i, i)
print(ans // 2)
0