結果

問題 No.182 新規性の虜
ユーザー ElkElk
提出日時 2018-05-27 14:41:44
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 861 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 23,296 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 18:29:21
合計ジャッジ時間 9,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 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 2,112 ms
5,376 KB
testcase_09 TLE -
testcase_10 AC 4,235 ms
6,940 KB
testcase_11 AC 2,870 ms
6,944 KB
testcase_12 AC 514 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 0 ms
6,944 KB
testcase_17 AC 0 ms
6,944 KB
testcase_18 AC 680 ms
6,944 KB
testcase_19 AC 497 ms
6,940 KB
testcase_20 AC 275 ms
6,940 KB
testcase_21 AC 798 ms
6,944 KB
testcase_22 AC 358 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |     scanf("%d\n", &N);
      |     ~~~~~^~~~~~~~~~~~
main.cpp:20:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |         scanf("%d", &A[i]);
      |         ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int check(int A, int list[], int cnt){
    int i, ret = 0;;
    for(i = 0; i < cnt; i++){
        if(A == list[i]){
            ret = 1;
            break;
        }
    }
    return ret;
}

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

    scanf("%d\n", &N);
    for(i = 0; i < N; i++){
        scanf("%d", &A[i]);
    }
    for(i = 0; i < N; i++){
        if(check(A[i], A, i) == 0){
            for(j = 0; j < N; j++){
                if(A[i] != A[j]){
                    cnt++;
                    //printf("i %d j %d cnt %d\n", i, j, cnt);
                }
                if(cnt == N - 1){
                    new_n++;
                    //printf("new i %d j %d\n", i, j);
                    break;
                }
            }
        }
        cnt = 0;
    }
    printf("%d\n", new_n);

    return 0;
}
0