結果

問題 No.182 新規性の虜
ユーザー Shiro_SShiro_S
提出日時 2020-03-30 23:10:17
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 20 ms / 5,000 ms
コード長 644 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 31,488 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 06:24:38
合計ジャッジ時間 1,608 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 20 ms
5,376 KB
testcase_10 AC 17 ms
5,376 KB
testcase_11 AC 14 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 16 ms
5,376 KB
testcase_19 AC 11 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 18 ms
5,376 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 13 ms
5,376 KB
testcase_25 AC 11 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
evil01.txt AC 15 ms
5,376 KB
evil02.txt AC 16 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:19:1: warning: return type defaults to 'int' [-Wimplicit-int]
   19 | main(){
      | ^~~~
main.c: In function 'main':
main.c:25:22: warning: passing argument 4 of 'qsort' from incompatible pointer type [-Wincompatible-pointer-types]
   25 |     qsort(a+1, n, 4, cmp);
      |                      ^~~
      |                      |
      |                      int (*)(const int *, const int *)
In file included from main.c:2:
/usr/include/stdlib.h:839:34: note: expected '__compar_fn_t' {aka 'int (*)(const void *, const void *)'} but argument is of type 'int (*)(const int *, const int *)'
  839 |                    __compar_fn_t __compar) __nonnull ((1, 4));
      |                    ~~~~~~~~~~~~~~^~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<stdint.h>
#include<stdbool.h>
#include<tgmath.h>
#include<time.h>
#define ll long long
#define min(a,b) ((a)>(b)?(b):(a))
#define max(a,b) ((a)>(b)?(a):(b))
#define miin(a,b,c) min((a), min((b), (c)))
#define maax(a,b,c) max((a), max((b), (c)))
int n, a[111111] = {};

int cmp(const int *a, const int *b){
    return *a - *b;
}

main(){
    scanf("%d", &n);
    for(int i=1; i<=n; i++){
        scanf("%d", &a[i]);
    }
    int m=n;
    qsort(a+1, n, 4, cmp);
    for(int i=1; i<=n; i++){
        m -= (a[i-1]==a[i] || a[i]==a[i+1]);
    }
    printf("%d\n", m);
    return 0;
}
0