結果

問題 No.1868 Teleporting Cyanmond
ユーザー bluemeganebluemegane
提出日時 2022-03-12 07:54:03
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 791 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 103,424 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-09-16 13:20:22
合計ジャッジ時間 5,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
17,792 KB
testcase_01 RE -
testcase_02 AC 21 ms
17,664 KB
testcase_03 AC 48 ms
24,960 KB
testcase_04 AC 43 ms
22,912 KB
testcase_05 AC 27 ms
18,816 KB
testcase_06 AC 31 ms
19,456 KB
testcase_07 AC 36 ms
21,732 KB
testcase_08 AC 32 ms
20,480 KB
testcase_09 AC 34 ms
20,608 KB
testcase_10 AC 46 ms
24,448 KB
testcase_11 AC 25 ms
18,304 KB
testcase_12 AC 32 ms
20,152 KB
testcase_13 AC 36 ms
22,400 KB
testcase_14 AC 48 ms
25,728 KB
testcase_15 AC 41 ms
22,656 KB
testcase_16 AC 27 ms
19,072 KB
testcase_17 AC 29 ms
20,224 KB
testcase_18 AC 52 ms
26,496 KB
testcase_19 AC 51 ms
26,112 KB
testcase_20 AC 52 ms
26,112 KB
testcase_21 AC 51 ms
26,112 KB
testcase_22 AC 51 ms
26,496 KB
testcase_23 AC 51 ms
25,984 KB
testcase_24 AC 53 ms
26,368 KB
testcase_25 AC 52 ms
26,240 KB
testcase_26 AC 52 ms
26,112 KB
testcase_27 AC 53 ms
26,112 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;
            for (int i = p + 1; i <= r[p]; i++)
            {
                if (r[i] > nextmax)
                {
                    nextmax = r[i];
                    nextp = i;
                }
            }
            p = nextp;
            step++;
            if (r[p] == n) break;
        }
        Console.WriteLine(step + 1);
    }
}
0