結果

問題 No.1868 Teleporting Cyanmond
ユーザー bluemeganebluemegane
提出日時 2022-03-12 09:32:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 887 bytes
コンパイル時間 3,425 ms
コンパイル使用メモリ 111,024 KB
実行使用メモリ 33,304 KB
最終ジャッジ日時 2024-09-16 15:00:21
合計ジャッジ時間 5,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,952 KB
testcase_01 AC 24 ms
25,892 KB
testcase_02 AC 25 ms
25,952 KB
testcase_03 AC 53 ms
30,652 KB
testcase_04 AC 47 ms
28,960 KB
testcase_05 AC 29 ms
24,544 KB
testcase_06 AC 33 ms
27,232 KB
testcase_07 AC 41 ms
28,528 KB
testcase_08 AC 36 ms
28,256 KB
testcase_09 AC 39 ms
28,000 KB
testcase_10 AC 50 ms
30,052 KB
testcase_11 AC 29 ms
26,468 KB
testcase_12 AC 34 ms
23,396 KB
testcase_13 AC 41 ms
27,112 KB
testcase_14 AC 54 ms
28,948 KB
testcase_15 AC 45 ms
26,928 KB
testcase_16 AC 31 ms
22,840 KB
testcase_17 AC 34 ms
25,652 KB
testcase_18 AC 58 ms
33,280 KB
testcase_19 AC 58 ms
33,292 KB
testcase_20 AC 58 ms
33,304 KB
testcase_21 AC 57 ms
31,104 KB
testcase_22 AC 55 ms
31,236 KB
testcase_23 AC 54 ms
29,060 KB
testcase_24 AC 58 ms
31,232 KB
testcase_25 AC 59 ms
28,800 KB
testcase_26 AC 57 ms
31,232 KB
testcase_27 AC 58 ms
31,104 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
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = ("0 " + Console.ReadLine().Trim()).Split(' ');
        var r = Array.ConvertAll(line, int.Parse);
        getAns(n, r);
    }
    static void getAns(int n, int[] r)
    {
        var step = 0;
        var p = 1;
        while (p < n)
        {
            var nextmax = 0;
            var nextp = 0;
            var imax = r[p];
            if (imax == n) { Console.WriteLine(step + 1); return; }
            for (int i = p + 1; i <= imax; i++)
            {
                if (r[i] > nextmax)
                {
                    nextmax = r[i];
                    nextp = i;
                }
            }
            p = nextp;
            step++;
            if (r[p] == n) break;
        }
        Console.WriteLine(step + 1);
    }
}
0