結果

問題 No.1438 Broken Drawers
ユーザー tentententen
提出日時 2023-04-17 10:04:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 1,934 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 96,240 KB
実行使用メモリ 48,756 KB
最終ジャッジ日時 2024-10-12 12:14:04
合計ジャッジ時間 10,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,748 KB
testcase_01 AC 52 ms
37,140 KB
testcase_02 AC 52 ms
37,084 KB
testcase_03 AC 51 ms
37,260 KB
testcase_04 AC 51 ms
36,964 KB
testcase_05 AC 52 ms
36,756 KB
testcase_06 AC 277 ms
48,756 KB
testcase_07 AC 248 ms
46,136 KB
testcase_08 AC 54 ms
37,064 KB
testcase_09 AC 54 ms
37,452 KB
testcase_10 AC 52 ms
36,852 KB
testcase_11 AC 98 ms
39,336 KB
testcase_12 AC 201 ms
44,768 KB
testcase_13 AC 211 ms
44,944 KB
testcase_14 AC 184 ms
44,376 KB
testcase_15 AC 260 ms
46,912 KB
testcase_16 AC 262 ms
47,292 KB
testcase_17 AC 277 ms
47,348 KB
testcase_18 AC 268 ms
47,436 KB
testcase_19 AC 259 ms
47,216 KB
testcase_20 AC 272 ms
47,480 KB
testcase_21 AC 252 ms
46,928 KB
testcase_22 AC 267 ms
46,868 KB
testcase_23 AC 264 ms
47,284 KB
testcase_24 AC 269 ms
47,732 KB
testcase_25 AC 271 ms
46,920 KB
testcase_26 AC 269 ms
47,448 KB
testcase_27 AC 271 ms
47,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int prev = 0;
        int count = 0;
        ArrayList<Integer> sum = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (prev > x) {
                count++;
            } else {
                sum.add(count);
                count = 1;
            }
            prev = x;
        }
        sum.add(count);
        int ans = n;
        for (int x : sum) {
            ans -= x / 2;
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0