結果

問題 No.1868 Teleporting Cyanmond
ユーザー kusagame12kusagame12
提出日時 2023-11-20 20:39:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 1,870 ms
コンパイル使用メモリ 73,904 KB
実行使用メモリ 48,132 KB
最終ジャッジ日時 2024-09-26 06:42:49
合計ジャッジ時間 13,673 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,324 KB
testcase_01 AC 117 ms
41,152 KB
testcase_02 AC 120 ms
41,440 KB
testcase_03 AC 455 ms
47,772 KB
testcase_04 AC 445 ms
47,832 KB
testcase_05 AC 207 ms
45,180 KB
testcase_06 AC 285 ms
46,984 KB
testcase_07 AC 395 ms
47,428 KB
testcase_08 AC 367 ms
47,684 KB
testcase_09 AC 387 ms
47,624 KB
testcase_10 AC 468 ms
47,660 KB
testcase_11 AC 190 ms
42,880 KB
testcase_12 AC 311 ms
47,648 KB
testcase_13 AC 381 ms
47,660 KB
testcase_14 AC 486 ms
47,888 KB
testcase_15 AC 415 ms
47,792 KB
testcase_16 AC 241 ms
46,460 KB
testcase_17 AC 285 ms
46,392 KB
testcase_18 AC 482 ms
48,052 KB
testcase_19 AC 489 ms
47,920 KB
testcase_20 AC 483 ms
48,132 KB
testcase_21 AC 470 ms
47,428 KB
testcase_22 AC 499 ms
48,040 KB
testcase_23 AC 493 ms
47,876 KB
testcase_24 AC 485 ms
47,972 KB
testcase_25 AC 521 ms
47,968 KB
testcase_26 AC 534 ms
48,100 KB
testcase_27 AC 558 ms
47,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        int[] rs = new int[n];
        for(int i = 0 ; i < n - 1 ; i++){
            rs[i] = sc.nextInt();
        }
        rs[n-1] = n;

        int now = 1;
        int ans = 0;
        while(rs[now-1] != n){
            int max = -1;
            for(int i = now, len = rs[now-1] ; i <= len ; i++){
                if(max <= rs[i-1]){
                    max = rs[i-1];
                    now = i;
                }
            }
            ans++;
        }
        
        System.out.println(ans+1);
    }
}
0