結果

問題 No.123 カードシャッフル
ユーザー BantakoBantako
提出日時 2017-07-11 20:35:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 11 ms / 5,000 ms
コード長 392 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 17:04:53
合計ジャッジ時間 878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 0 ms
5,248 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 10 ms
5,376 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 11 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    2 | main(){
      | ^~~~
main.cpp: In function ‘int main()’:
main.cpp:4:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 |     scanf("%d%d",&N,&M);
      |     ~~~~~^~~~~~~~~~~~~~
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%d",&index);
      |         ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
main(){
    int N,M;
    scanf("%d%d",&N,&M);
    int card[50];
    for(int i = 0;i < N;i++){
        card[i] = i+1;
    }
    for(int i = 0;i < M;i++){
        int index;
        scanf("%d",&index);
        int num = card[index-1];
        for(int j = index-1;j > 0;j--){
            card[j] = card[j-1];
        }
        card[0] = num;
    }
    printf("%d\n",card[0]);
}
0