結果

問題 No.123 カードシャッフル
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-29 09:25:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 801 bytes
コンパイル時間 2,813 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 60,956 KB
最終ジャッジ日時 2024-09-13 19:09:07
合計ジャッジ時間 4,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
42,560 KB
testcase_01 AC 53 ms
42,236 KB
testcase_02 AC 53 ms
42,420 KB
testcase_03 AC 53 ms
42,600 KB
testcase_04 AC 53 ms
42,568 KB
testcase_05 AC 53 ms
42,800 KB
testcase_06 WA -
testcase_07 AC 52 ms
42,600 KB
testcase_08 AC 53 ms
42,416 KB
testcase_09 AC 53 ms
42,752 KB
testcase_10 AC 154 ms
47,796 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        int N = Integer.parseInt(inputs[0]);
        int M = Integer.parseInt(inputs[1]);
        inputs = reader.readLine().split(" ");
        int top = 1;
        for (int i = M - 1; i > -1; i--) {
            int a = Integer.parseInt(inputs[i]);
            if (top == 1) {
                top = a;
            } else if (top < a) {
                top -= 1;
            }
        }
        System.out.println(top);
    }
}
0