結果

問題 No.1470 Mex Sum
ユーザー kakel-sankakel-san
提出日時 2024-07-01 23:51:51
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 14,696 ms
コンパイル使用メモリ 167,952 KB
実行使用メモリ 198,308 KB
最終ジャッジ日時 2024-07-01 23:52:13
合計ジャッジ時間 17,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
29,944 KB
testcase_01 AC 57 ms
30,208 KB
testcase_02 AC 75 ms
32,512 KB
testcase_03 AC 72 ms
32,768 KB
testcase_04 AC 84 ms
32,896 KB
testcase_05 AC 72 ms
32,640 KB
testcase_06 AC 72 ms
33,024 KB
testcase_07 AC 71 ms
32,768 KB
testcase_08 AC 73 ms
33,280 KB
testcase_09 AC 73 ms
33,152 KB
testcase_10 AC 73 ms
32,896 KB
testcase_11 AC 72 ms
32,768 KB
testcase_12 AC 101 ms
46,336 KB
testcase_13 AC 98 ms
45,824 KB
testcase_14 AC 100 ms
45,952 KB
testcase_15 AC 98 ms
46,336 KB
testcase_16 AC 98 ms
45,952 KB
testcase_17 AC 100 ms
45,952 KB
testcase_18 AC 100 ms
45,696 KB
testcase_19 AC 101 ms
45,696 KB
testcase_20 AC 101 ms
46,080 KB
testcase_21 AC 102 ms
46,208 KB
testcase_22 AC 100 ms
46,464 KB
testcase_23 AC 101 ms
46,464 KB
testcase_24 AC 100 ms
46,080 KB
testcase_25 AC 102 ms
45,952 KB
testcase_26 AC 99 ms
46,208 KB
testcase_27 AC 100 ms
46,072 KB
testcase_28 AC 102 ms
46,208 KB
testcase_29 AC 102 ms
46,592 KB
testcase_30 AC 102 ms
46,464 KB
testcase_31 AC 100 ms
46,080 KB
testcase_32 AC 101 ms
46,200 KB
testcase_33 AC 100 ms
46,336 KB
testcase_34 AC 101 ms
46,200 KB
testcase_35 AC 101 ms
46,080 KB
testcase_36 AC 102 ms
45,952 KB
testcase_37 AC 95 ms
43,648 KB
testcase_38 AC 93 ms
43,648 KB
testcase_39 AC 94 ms
43,648 KB
testcase_40 AC 94 ms
43,264 KB
testcase_41 AC 95 ms
43,256 KB
testcase_42 AC 95 ms
43,264 KB
testcase_43 AC 94 ms
43,392 KB
testcase_44 AC 96 ms
43,648 KB
testcase_45 AC 94 ms
43,256 KB
testcase_46 AC 97 ms
43,136 KB
testcase_47 AC 94 ms
43,264 KB
testcase_48 AC 96 ms
43,256 KB
testcase_49 AC 96 ms
43,136 KB
testcase_50 AC 95 ms
198,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (136 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var count = new long[4];
        var ans = 0L;
        foreach (var ai in a)
        {
            if (ai == 1) ans += count[1] * 2 + count[2] * 3 + count[3] * 2;
            else if (ai == 2) ans += count[1] * 3 + count[2] + count[3];
            else ans += count[1] * 2 + count[2] + count[3];
            if (ai < 3) ++count[ai];
            else ++count[3];
        }
        WriteLine(ans);
    }
}
0