結果

問題 No.123 カードシャッフル
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-11 09:55:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 572 ms / 5,000 ms
コード長 821 bytes
コンパイル時間 2,815 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 59,640 KB
最終ジャッジ日時 2024-09-19 18:21:06
合計ジャッジ時間 6,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,236 KB
testcase_01 AC 120 ms
54,024 KB
testcase_02 AC 108 ms
52,716 KB
testcase_03 AC 118 ms
54,348 KB
testcase_04 AC 122 ms
54,028 KB
testcase_05 AC 106 ms
52,744 KB
testcase_06 AC 118 ms
53,816 KB
testcase_07 AC 107 ms
52,880 KB
testcase_08 AC 121 ms
54,260 KB
testcase_09 AC 117 ms
54,012 KB
testcase_10 AC 496 ms
59,088 KB
testcase_11 AC 431 ms
59,352 KB
testcase_12 AC 546 ms
59,316 KB
testcase_13 AC 572 ms
59,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
  
  public class Main {
      public static void main(String[] args) {
          Scanner sc = new Scanner(System.in);
          
          int N = sc.nextInt();
          int M = sc.nextInt();
          int Card[] = new int[N];
          
          //カード配列作成
          for(int i=0; i<N; i++){
              Card[i] = i+1;
          }
          
          // シャッフル
          for(int j=0; j<M; j++){
              //K番目を1番目に
              int K = sc.nextInt();
              int temp = Card[K-1];
              
              //カードを後ろにずらす
              while (K-1>0){
                  Card[K-1] = Card[K-2];
                  K--;
              }
              Card[0]=temp;
          }
          System.out.println(Card[0]);
      }
  }
0