結果

問題 No.123 カードシャッフル
ユーザー abcabc
提出日時 2016-11-06 12:42:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 515 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 1,763 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 59,416 KB
最終ジャッジ日時 2024-11-25 03:17:21
合計ジャッジ時間 5,586 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,980 KB
testcase_01 AC 122 ms
53,924 KB
testcase_02 AC 104 ms
52,920 KB
testcase_03 AC 125 ms
54,048 KB
testcase_04 AC 121 ms
54,188 KB
testcase_05 AC 115 ms
53,628 KB
testcase_06 AC 109 ms
52,912 KB
testcase_07 AC 123 ms
54,156 KB
testcase_08 AC 123 ms
54,016 KB
testcase_09 AC 114 ms
54,088 KB
testcase_10 AC 491 ms
59,416 KB
testcase_11 AC 483 ms
58,968 KB
testcase_12 AC 515 ms
59,360 KB
testcase_13 AC 458 ms
59,256 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