結果

問題 No.2210 equence Squence Seuence
ユーザー tentententen
提出日時 2023-02-14 08:47:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 2,780 bytes
コンパイル時間 2,902 ms
コンパイル使用メモリ 84,132 KB
実行使用メモリ 63,124 KB
最終ジャッジ日時 2024-07-16 18:14:28
合計ジャッジ時間 9,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,416 KB
testcase_01 AC 51 ms
50,488 KB
testcase_02 AC 55 ms
50,440 KB
testcase_03 AC 183 ms
55,956 KB
testcase_04 AC 184 ms
55,792 KB
testcase_05 AC 231 ms
56,032 KB
testcase_06 AC 210 ms
56,216 KB
testcase_07 AC 300 ms
60,440 KB
testcase_08 AC 51 ms
50,480 KB
testcase_09 AC 53 ms
50,040 KB
testcase_10 AC 51 ms
50,280 KB
testcase_11 AC 52 ms
50,108 KB
testcase_12 AC 51 ms
50,324 KB
testcase_13 AC 306 ms
60,060 KB
testcase_14 AC 314 ms
60,188 KB
testcase_15 AC 341 ms
60,132 KB
testcase_16 AC 337 ms
63,124 KB
testcase_17 AC 325 ms
60,480 KB
testcase_18 AC 52 ms
50,480 KB
testcase_19 AC 52 ms
50,040 KB
testcase_20 AC 52 ms
50,260 KB
testcase_21 AC 51 ms
50,692 KB
testcase_22 AC 50 ms
50,464 KB
testcase_23 AC 297 ms
60,416 KB
testcase_24 AC 256 ms
57,960 KB
testcase_25 AC 277 ms
56,768 KB
testcase_26 AC 310 ms
60,504 KB
testcase_27 AC 202 ms
55,940 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 k = sc.nextInt() - 1;
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        boolean[] isLearger = new boolean[n];
        for (int i = n - 2; i >= 0; i--) {
            if (values[i] < values[i + 1]) {
                isLearger[i] = true;
            } else if (values[i] == values[i + 1]) {
                isLearger[i] = isLearger[i + 1];
            }
        }
        int ans = -1;
        int left = 0;
        int right = n - 1;
        for (int i = 0; i < n - 1; i++) {
            if (isLearger[i]) {
                if (right == k) {
                    ans = i;
                    break;
                }
                right--;
            } else {
                if (left == k) {
                    ans = i;
                    break;
                }
                left++;
            }
        }
        if (ans == -1) {
            ans = n - 1;
        }
        StringBuilder sb = new StringBuilder();
        boolean isFirst = true;
        for (int i = 0; i < n; i++) {
            if (i == ans) {
                continue;
            }
            if (!isFirst) {
                sb.append(" ");
            }
            isFirst = false;
            sb.append(values[i]);
        }
        System.out.println(sb);
    }
    
}
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