結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー tobisatistobisatis
提出日時 2024-10-18 21:35:36
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 1,643 bytes
コンパイル時間 11,363 ms
コンパイル使用メモリ 169,620 KB
実行使用メモリ 74,224 KB
最終ジャッジ日時 2024-10-18 22:25:29
合計ジャッジ時間 74,350 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
33,148 KB
testcase_01 AC 56 ms
36,888 KB
testcase_02 AC 57 ms
65,904 KB
testcase_03 AC 57 ms
33,664 KB
testcase_04 AC 56 ms
36,880 KB
testcase_05 AC 54 ms
72,320 KB
testcase_06 AC 58 ms
33,664 KB
testcase_07 AC 57 ms
36,892 KB
testcase_08 AC 54 ms
74,224 KB
testcase_09 AC 55 ms
33,264 KB
testcase_10 AC 54 ms
37,284 KB
testcase_11 AC 54 ms
73,728 KB
testcase_12 AC 54 ms
33,400 KB
testcase_13 AC 56 ms
37,152 KB
testcase_14 AC 71 ms
68,992 KB
testcase_15 AC 85 ms
33,408 KB
testcase_16 AC 55 ms
37,280 KB
testcase_17 AC 54 ms
33,404 KB
testcase_18 AC 54 ms
35,152 KB
testcase_19 AC 56 ms
37,792 KB
testcase_20 AC 57 ms
36,452 KB
testcase_21 AC 56 ms
34,048 KB
04_evil_01.txt TLE -
04_evil_02.txt TLE -
04_evil_03.txt TLE -
04_evil_04.txt TLE -
04_evil_05.txt TLE -
04_evil_06.txt TLE -
04_evil_07.txt TLE -
04_evil_08.txt TLE -
04_evil_09.txt TLE -
04_evil_10.txt TLE -
04_evil_11.txt TLE -
04_evil_12.txt TLE -
04_evil_13.txt TLE -
04_evil_14.txt TLE -
04_evil_15.txt TLE -
04_evil_16.txt TLE -
04_evil_17.txt TLE -
04_evil_18.txt TLE -
04_evil_19.txt TLE -
04_evil_20.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 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 #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var n = Int();
        var az = n.Repeat(Int);
        var ans = 0L;
        for (var i = 0; i < n; i++) for (var j = 0; j < n; j++)
        {
            ans += Math.Abs(i - j) * Math.Abs(az[i] - az[j]);
        }
        return ans;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Trim().Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
}
0