結果

問題 No.397 NO MORE KADOMATSU
ユーザー Mcpu3Mcpu3
提出日時 2018-09-19 16:16:19
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 30,336 KB
実行使用メモリ 25,220 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 01:54:40
合計ジャッジ時間 2,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,836 KB
testcase_01 AC 19 ms
25,220 KB
testcase_02 AC 18 ms
25,220 KB
testcase_03 AC 19 ms
24,836 KB
testcase_04 AC 18 ms
24,836 KB
testcase_05 AC 20 ms
25,220 KB
testcase_06 AC 25 ms
24,836 KB
testcase_07 AC 23 ms
24,580 KB
testcase_08 AC 20 ms
25,220 KB
testcase_09 AC 19 ms
24,580 KB
testcase_10 AC 36 ms
24,836 KB
testcase_11 AC 19 ms
24,836 KB
testcase_12 AC 26 ms
25,220 KB
testcase_13 AC 29 ms
24,580 KB
testcase_14 AC 27 ms
25,220 KB
testcase_15 AC 26 ms
25,220 KB
testcase_16 AC 18 ms
24,568 KB
testcase_17 AC 18 ms
24,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int b1(int n,int *a)
{
    int s=0,t,i,j;
    for(i=0;i<n-1;++i){
        for(j=n-1;j>i;--j){
            if(a[j-1]>a[j]){
                t=a[j-1];
                a[j-1]=a[j];
                a[j]=t;
                ++s;
            }
        }
    }
    return s;
}

void b2(int n,int *a)
{
    int t,i,j;
    for(i=0;i<n-1;++i){
        for(j=n-1;j>i;--j){
            if(a[j-1]>a[j]){
                t=a[j-1];
                a[j-1]=a[j];
                a[j]=t;
                printf("%d %d\n",j-1,j);
            }
        }
    }
}

int main(void)
{
    int n,a[2][100],i;
    scanf("%d",&n);
    for(i=0;i<n;++i){
        scanf("%d",&a[0][i]);
        a[1][i]=a[0][i];
    }
    printf("%d\n",b1(n,a[0]));
    b2(n,a[1]);
    fflush(0);
    return 0;
}
0