結果

問題 No.1470 Mex Sum
ユーザー bluemeganebluemegane
提出日時 2021-04-10 07:40:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 765 bytes
コンパイル時間 2,805 ms
コンパイル使用メモリ 110,260 KB
実行使用メモリ 33,408 KB
最終ジャッジ日時 2024-06-25 20:47:01
合計ジャッジ時間 8,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,176 KB
testcase_01 AC 23 ms
18,176 KB
testcase_02 AC 31 ms
20,224 KB
testcase_03 AC 32 ms
20,096 KB
testcase_04 AC 33 ms
20,096 KB
testcase_05 AC 33 ms
19,712 KB
testcase_06 AC 34 ms
19,968 KB
testcase_07 AC 33 ms
19,840 KB
testcase_08 AC 32 ms
19,840 KB
testcase_09 AC 36 ms
19,840 KB
testcase_10 AC 32 ms
19,712 KB
testcase_11 AC 31 ms
19,712 KB
testcase_12 AC 84 ms
33,280 KB
testcase_13 AC 86 ms
32,896 KB
testcase_14 AC 84 ms
32,896 KB
testcase_15 AC 85 ms
33,024 KB
testcase_16 AC 85 ms
33,024 KB
testcase_17 AC 84 ms
33,024 KB
testcase_18 AC 84 ms
32,768 KB
testcase_19 AC 83 ms
32,768 KB
testcase_20 AC 83 ms
32,768 KB
testcase_21 AC 86 ms
33,408 KB
testcase_22 AC 85 ms
33,024 KB
testcase_23 AC 86 ms
33,408 KB
testcase_24 AC 86 ms
33,408 KB
testcase_25 AC 85 ms
33,280 KB
testcase_26 AC 85 ms
33,408 KB
testcase_27 AC 85 ms
33,280 KB
testcase_28 AC 85 ms
33,408 KB
testcase_29 AC 85 ms
33,024 KB
testcase_30 AC 85 ms
33,408 KB
testcase_31 AC 85 ms
33,408 KB
testcase_32 AC 85 ms
33,152 KB
testcase_33 AC 84 ms
33,280 KB
testcase_34 AC 86 ms
33,408 KB
testcase_35 AC 86 ms
33,152 KB
testcase_36 AC 85 ms
32,768 KB
testcase_37 AC 77 ms
32,128 KB
testcase_38 AC 77 ms
32,256 KB
testcase_39 AC 77 ms
32,000 KB
testcase_40 AC 83 ms
32,256 KB
testcase_41 AC 79 ms
32,128 KB
testcase_42 AC 78 ms
32,000 KB
testcase_43 AC 78 ms
32,000 KB
testcase_44 AC 80 ms
32,000 KB
testcase_45 AC 80 ms
32,128 KB
testcase_46 AC 80 ms
32,256 KB
testcase_47 AC 78 ms
31,872 KB
testcase_48 AC 79 ms
32,000 KB
testcase_49 AC 78 ms
32,000 KB
testcase_50 AC 78 ms
32,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static long c1, c2, c3;
    static void Main()
    {

        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        c1 = c2 = c3 = 0;
        for (int i = 0; i < n; i++)
        {
            if (a[i] == 1) c1++;
            else if (a[i] == 2) c2++;
            else c3++;
        }
        getAns();
    }
    static void getAns()
    {
        var a11 = c1 * (c1 - 1);
        var a22 = c2 * (c2 - 1) / 2;
        var a33 = c3 * (c3 - 1) / 2;
        var a12 = c1 * c2 * 3;
        var a13 = c1 * c3 * 2;
        var a23 = c2 * c3;
        Console.WriteLine(a11 + a22 + a33 + a12 + a13 + a23);
    }
}
0