結果
問題 | No.1868 Teleporting Cyanmond |
ユーザー | kusagame12 |
提出日時 | 2023-11-20 18:50:37 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 670 bytes |
コンパイル時間 | 5,600 ms |
コンパイル使用メモリ | 74,432 KB |
実行使用メモリ | 48,164 KB |
最終ジャッジ日時 | 2024-09-26 06:41:15 |
合計ジャッジ時間 | 16,480 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
41,064 KB |
testcase_01 | AC | 124 ms
41,124 KB |
testcase_02 | AC | 123 ms
41,212 KB |
testcase_03 | AC | 458 ms
47,676 KB |
testcase_04 | AC | 427 ms
47,712 KB |
testcase_05 | AC | 197 ms
45,100 KB |
testcase_06 | WA | - |
testcase_07 | AC | 395 ms
47,532 KB |
testcase_08 | AC | 326 ms
47,460 KB |
testcase_09 | AC | 380 ms
47,588 KB |
testcase_10 | AC | 454 ms
47,720 KB |
testcase_11 | AC | 191 ms
42,700 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
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++){ max = Math.max(max , rs[i-1]); } now = max; ans++; } System.out.println(ans+1); } }