結果

問題 No.182 新規性の虜
ユーザー Shiro_SShiro_S
提出日時 2020-03-30 23:10:17
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 23 ms / 5,000 ms
コード長 644 bytes
コンパイル時間 1,138 ms
コンパイル使用メモリ 29,932 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-05 10:41:25
合計ジャッジ時間 2,737 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 0 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 14 ms
4,380 KB
testcase_09 AC 23 ms
4,376 KB
testcase_10 AC 20 ms
4,376 KB
testcase_11 AC 16 ms
4,376 KB
testcase_12 AC 7 ms
4,376 KB
testcase_13 AC 0 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 0 ms
4,376 KB
testcase_18 AC 17 ms
4,380 KB
testcase_19 AC 12 ms
4,380 KB
testcase_20 AC 8 ms
4,376 KB
testcase_21 AC 20 ms
4,380 KB
testcase_22 AC 10 ms
4,376 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 15 ms
4,380 KB
testcase_25 AC 11 ms
4,380 KB
testcase_26 AC 3 ms
4,376 KB
testcase_27 AC 1 ms
4,500 KB
evil01.txt AC 18 ms
4,380 KB
evil02.txt AC 17 ms
4,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:19:1: 警告: 戻り値の型をデフォルトの ‘int’ にします [-Wimplicit-int]
   19 | main(){
      | ^~~~
main.c: 関数 ‘main’ 内:
main.c:25:22: 警告: 互換性のないポインタ型から 4 番目の ‘qsort’ の引数に渡しています [-Wincompatible-pointer-types]
   25 |     qsort(a+1, n, 4, cmp);
      |                      ^~~
      |                      |
      |                      int (*)(const int *, const int *)
次のファイルから読み込み:  main.c:2:
/usr/include/stdlib.h:828:34: 備考: expected ‘__compar_fn_t’ {aka ‘int (*)(const void *, const void *)’} but argument is of type ‘int (*)(const int *, const int *)’
  828 |                    __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