結果

問題 No.365 ジェンガソート
ユーザー tentententen
提出日時 2022-10-13 08:56:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,383 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 77,860 KB
実行使用メモリ 45,624 KB
最終ジャッジ日時 2024-06-26 11:50:12
合計ジャッジ時間 9,502 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,064 KB
testcase_01 AC 52 ms
37,012 KB
testcase_02 AC 53 ms
37,044 KB
testcase_03 AC 51 ms
36,964 KB
testcase_04 AC 51 ms
36,828 KB
testcase_05 AC 51 ms
36,904 KB
testcase_06 AC 51 ms
36,964 KB
testcase_07 AC 53 ms
37,132 KB
testcase_08 AC 52 ms
37,016 KB
testcase_09 AC 53 ms
36,988 KB
testcase_10 AC 52 ms
37,156 KB
testcase_11 AC 54 ms
36,800 KB
testcase_12 AC 51 ms
36,908 KB
testcase_13 AC 50 ms
37,096 KB
testcase_14 AC 51 ms
37,076 KB
testcase_15 AC 51 ms
37,060 KB
testcase_16 AC 181 ms
44,744 KB
testcase_17 AC 187 ms
45,236 KB
testcase_18 AC 102 ms
39,120 KB
testcase_19 AC 189 ms
44,900 KB
testcase_20 AC 142 ms
41,140 KB
testcase_21 AC 125 ms
40,672 KB
testcase_22 AC 170 ms
43,380 KB
testcase_23 AC 151 ms
43,272 KB
testcase_24 AC 197 ms
44,840 KB
testcase_25 AC 126 ms
40,016 KB
testcase_26 AC 163 ms
44,356 KB
testcase_27 AC 187 ms
45,300 KB
testcase_28 AC 179 ms
44,560 KB
testcase_29 AC 178 ms
44,904 KB
testcase_30 AC 176 ms
44,572 KB
testcase_31 AC 137 ms
40,784 KB
testcase_32 AC 133 ms
40,800 KB
testcase_33 AC 211 ms
45,228 KB
testcase_34 AC 115 ms
39,932 KB
testcase_35 AC 183 ms
44,468 KB
testcase_36 AC 187 ms
45,536 KB
testcase_37 AC 210 ms
45,308 KB
testcase_38 AC 215 ms
45,492 KB
testcase_39 AC 217 ms
45,624 KB
testcase_40 AC 187 ms
44,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        int idx = n - 1;
        int ans = n;
        for (int i = n; i >= 1 && idx >= 0; i--) {
            while (idx >= 0 && values[idx] != i) {
                idx--;
            }
            if (idx < 0) {
                break;
            }
            idx--;
            ans--;
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0