結果

問題 No.123 カードシャッフル
ユーザー abcabc
提出日時 2016-11-06 12:39:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 480 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 1,826 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 59,324 KB
最終ジャッジ日時 2024-11-25 03:17:08
合計ジャッジ時間 5,405 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,760 KB
testcase_01 AC 119 ms
53,640 KB
testcase_02 AC 118 ms
53,820 KB
testcase_03 AC 118 ms
53,836 KB
testcase_04 AC 118 ms
53,728 KB
testcase_05 AC 115 ms
53,736 KB
testcase_06 AC 100 ms
52,536 KB
testcase_07 AC 105 ms
52,444 KB
testcase_08 AC 112 ms
53,596 KB
testcase_09 AC 114 ms
53,960 KB
testcase_10 AC 480 ms
58,940 KB
testcase_11 AC 412 ms
57,816 KB
testcase_12 AC 456 ms
59,108 KB
testcase_13 AC 478 ms
59,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numCards = sc.nextInt();

        int numShuffling = sc.nextInt();

        int[] cards = new int[numShuffling];

        for (int i = 0; i < numShuffling; i++) {
            cards[i] = sc.nextInt();
        }

        int topCard = 1;

        for (int i = numShuffling - 1; i >= 0; i--) {

            if (topCard == 1) {

                topCard = cards[i];

            } else {

                if (topCard <= cards[i]) {
                    topCard--;
                }

            }

        }

        System.out.println(topCard);

    }

}
0