結果

問題 No.182 新規性の虜
ユーザー ElkElk
提出日時 2018-05-27 16:07:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,118 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 23,680 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 19:07:35
合計ジャッジ時間 1,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 14 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 10 ms
5,376 KB
testcase_26 WA -
testcase_27 WA -
evil01.txt WA -
evil02.txt WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:51:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   51 |     scanf("%d\n", &N);
      |     ~~~~~^~~~~~~~~~~~
main.cpp:53:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   53 |         scanf("%d", &A[i]);
      |         ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

void Swap(int *a, int *b);
void Quick_sort(int A[], int left, int right);

void Swap(int *a, int *b){
    int tmp;

    tmp = *a;
    *a = *b;
    *b = tmp;
}

void Quick_sort(int A[], int left, int right){
    int pivot, i, j;

    pivot = A[(left + right)/2];
    i = left;
    j = right;
    while(1){
        while(1){
            if(A[i] < pivot){
                i++;
            }else{
                break;
            }
        }
        while(1){
            if(A[j] > pivot){
                j--;
            }else{
                break;
            }
        }
        if(i >= j)  break;
        Swap(&A[i], &A[j]);
        i++;
        j--;
    }
    if(i - 1 > left){
        Quick_sort(A, left, i - 1);
    }
    if(j + 1 < right){
        Quick_sort(A, j + 1, right);
    }
}

int main(){
    int N, i, cnt = 0, A[100000];

    scanf("%d\n", &N);
    for(i = 0; i < N; i++){
        scanf("%d", &A[i]);
    }

    Quick_sort(A, 0, N - 1);

    for(i = 1; i < N; i++){
        if((A[i] - A[i - 1]) > 0){
            cnt++;
        }
    }
    printf("%d\n", cnt);

    return 0;
}
0