結果

問題 No.1470 Mex Sum
ユーザー 萩3萩3
提出日時 2021-05-03 00:10:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 96,768 KB
最終ジャッジ日時 2024-07-21 09:18:42
合計ジャッジ時間 6,486 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 46 ms
61,696 KB
testcase_03 AC 47 ms
62,080 KB
testcase_04 AC 46 ms
62,336 KB
testcase_05 AC 46 ms
62,592 KB
testcase_06 AC 46 ms
61,952 KB
testcase_07 AC 47 ms
62,464 KB
testcase_08 AC 46 ms
62,464 KB
testcase_09 AC 47 ms
62,464 KB
testcase_10 AC 46 ms
62,464 KB
testcase_11 AC 48 ms
62,720 KB
testcase_12 AC 80 ms
96,180 KB
testcase_13 AC 70 ms
87,936 KB
testcase_14 AC 71 ms
86,528 KB
testcase_15 AC 80 ms
96,512 KB
testcase_16 AC 72 ms
88,576 KB
testcase_17 AC 70 ms
86,016 KB
testcase_18 AC 70 ms
88,448 KB
testcase_19 AC 71 ms
86,528 KB
testcase_20 AC 70 ms
88,192 KB
testcase_21 AC 81 ms
96,128 KB
testcase_22 AC 81 ms
96,188 KB
testcase_23 AC 72 ms
87,168 KB
testcase_24 AC 81 ms
96,384 KB
testcase_25 AC 82 ms
96,372 KB
testcase_26 AC 72 ms
87,168 KB
testcase_27 AC 82 ms
96,384 KB
testcase_28 AC 81 ms
96,536 KB
testcase_29 AC 72 ms
86,656 KB
testcase_30 AC 82 ms
96,136 KB
testcase_31 AC 82 ms
96,132 KB
testcase_32 AC 82 ms
96,516 KB
testcase_33 AC 81 ms
96,768 KB
testcase_34 AC 82 ms
96,768 KB
testcase_35 AC 82 ms
96,384 KB
testcase_36 AC 81 ms
96,000 KB
testcase_37 AC 61 ms
81,280 KB
testcase_38 AC 62 ms
80,512 KB
testcase_39 AC 62 ms
80,896 KB
testcase_40 AC 66 ms
85,888 KB
testcase_41 AC 67 ms
85,760 KB
testcase_42 AC 66 ms
85,120 KB
testcase_43 AC 66 ms
85,120 KB
testcase_44 AC 66 ms
85,120 KB
testcase_45 AC 67 ms
85,248 KB
testcase_46 AC 66 ms
84,992 KB
testcase_47 AC 67 ms
85,504 KB
testcase_48 AC 66 ms
85,376 KB
testcase_49 AC 66 ms
85,376 KB
testcase_50 AC 66 ms
85,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def resolve():
    _ = input()
    cnt1,cnt2,cntother = 0,0,0
    for ai in map(int,sys.stdin.readline().split()):
        if ai == 1: cnt1 += 1
        elif ai == 2: cnt2 += 1
        else: cntother += 1

    result = 0
    if cnt1 > 1:
        result += cnt1*(cnt1-1)

    result += cnt1 * cnt2 * 3 + cnt1 * cntother * 2\
        + (cnt2 + cntother) * (cnt2 + cntother - 1) // 2

    print(result)

resolve()
0