結果

問題 No.1687 What the Heck?
ユーザー bluemeganebluemegane
提出日時 2021-09-25 07:15:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 2,516 ms
コンパイル使用メモリ 107,568 KB
実行使用メモリ 44,264 KB
最終ジャッジ日時 2024-07-05 11:58:47
合計ジャッジ時間 4,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,908 KB
testcase_01 AC 24 ms
24,044 KB
testcase_02 AC 24 ms
24,044 KB
testcase_03 AC 23 ms
24,040 KB
testcase_04 AC 24 ms
23,780 KB
testcase_05 AC 24 ms
24,244 KB
testcase_06 AC 24 ms
26,020 KB
testcase_07 AC 47 ms
29,288 KB
testcase_08 AC 56 ms
30,408 KB
testcase_09 AC 48 ms
31,256 KB
testcase_10 AC 41 ms
26,080 KB
testcase_11 AC 42 ms
28,224 KB
testcase_12 AC 92 ms
44,264 KB
testcase_13 AC 94 ms
42,100 KB
testcase_14 AC 93 ms
40,044 KB
testcase_15 AC 94 ms
42,224 KB
testcase_16 AC 94 ms
41,988 KB
testcase_17 AC 32 ms
25,172 KB
testcase_18 AC 92 ms
40,052 KB
testcase_19 AC 29 ms
26,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var p = Array.ConvertAll(line, int.Parse);
        getAns(n, p);
    }
    static void getAns(int n, int[] p)
    {
        if (n == 1) { Console.WriteLine(0); return; }
        var a = new int[n + 1];
        for (int i = 0; i < n; i++) a[p[i]] = i + 1;
        long t = a[1] - a[2];
        var ans = t;
        for (int i = 3; i <= n; i++)
        {
            t += 2L * a[i - 1] - a[i];
            ans = Max(ans, t);
        }
        Console.WriteLine(Max(0, ans));
    }
}
0