結果

問題 No.1470 Mex Sum
ユーザー moharan627moharan627
提出日時 2021-04-09 21:40:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 814 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,188 KB
最終ジャッジ日時 2024-06-25 04:41:25
合計ジャッジ時間 16,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 41 ms
11,392 KB
testcase_03 AC 42 ms
11,392 KB
testcase_04 AC 41 ms
11,520 KB
testcase_05 AC 41 ms
11,392 KB
testcase_06 AC 40 ms
11,520 KB
testcase_07 AC 40 ms
11,392 KB
testcase_08 AC 41 ms
11,392 KB
testcase_09 AC 41 ms
11,520 KB
testcase_10 AC 41 ms
11,520 KB
testcase_11 AC 41 ms
11,392 KB
testcase_12 AC 324 ms
17,928 KB
testcase_13 AC 317 ms
18,068 KB
testcase_14 AC 321 ms
17,988 KB
testcase_15 AC 325 ms
18,024 KB
testcase_16 AC 315 ms
18,060 KB
testcase_17 AC 312 ms
17,880 KB
testcase_18 AC 310 ms
17,980 KB
testcase_19 AC 316 ms
18,056 KB
testcase_20 AC 317 ms
17,936 KB
testcase_21 AC 339 ms
18,996 KB
testcase_22 AC 333 ms
18,220 KB
testcase_23 AC 329 ms
19,188 KB
testcase_24 AC 336 ms
18,192 KB
testcase_25 AC 347 ms
18,336 KB
testcase_26 AC 333 ms
18,204 KB
testcase_27 AC 337 ms
18,192 KB
testcase_28 AC 338 ms
18,220 KB
testcase_29 AC 345 ms
18,204 KB
testcase_30 AC 330 ms
18,196 KB
testcase_31 AC 338 ms
18,332 KB
testcase_32 AC 344 ms
18,332 KB
testcase_33 AC 341 ms
18,340 KB
testcase_34 AC 331 ms
18,348 KB
testcase_35 AC 335 ms
18,192 KB
testcase_36 AC 334 ms
18,480 KB
testcase_37 AC 1,234 ms
15,196 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 428 ms
14,708 KB
testcase_41 AC 428 ms
14,704 KB
testcase_42 AC 433 ms
14,708 KB
testcase_43 AC 431 ms
14,576 KB
testcase_44 AC 432 ms
14,584 KB
testcase_45 AC 431 ms
14,708 KB
testcase_46 AC 430 ms
14,832 KB
testcase_47 AC 435 ms
14,704 KB
testcase_48 AC 433 ms
14,576 KB
testcase_49 AC 434 ms
14,708 KB
testcase_50 AC 436 ms
14,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LC(): return list(input())
def IC(): return [int(c) for c in input()]
def MI(): return map(int, sys.stdin.readline().split())
INF = float('inf')
MOD = 10**9 + 7
def solve():
    N = II()
    A = LI()
    One = 0
    Two = 0
    Other = 0
    for a in A:
        if(a==1):
            One+=1
        elif(a==2):
            Two+=1
        else:
            Other+=1
    import math
    def combinations_count(n, r):
        return math.factorial(n) // (math.factorial(n - r) * math.factorial(r))
    Thrid = One*Two
    Second = combinations_count(One, 2) + One*Other
    First = (N*(N-1))//2 - Thrid -Second
    print(3*Thrid+2*Second + First)
    return
solve()
0