結果

問題 No.123 カードシャッフル
ユーザー 2475057t2475057t
提出日時 2024-10-09 22:08:32
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 459 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 29,824 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-09 22:08:34
合計ジャッジ時間 1,878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
6,816 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 11 ms
6,816 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.2297 Best Grouping
#include <stdio.h>

int main(){
    
    int N, M;
    scanf("%d %d", &N, &M);
    
    int A[M];
    for(int i=0; i<M; i++){
        scanf("%d ", &A[i]);
    }
    int B[N];
    for(int i=0; i<N; i++){
        B[i] = i + 1;
    }
    
    for(int i=0; i<M; i++){
        int tmp = B[A[i]];
        for(int j=A[i]; j>0; j--){
            B[j] = B[j-1];
        }
        B[0] = tmp;
    }
    
    printf("%d\n",B[0]);

    return 0;
}
0