結果

問題 No.182 新規性の虜
ユーザー ElkElk
提出日時 2018-05-27 14:32:50
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 580 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 22,784 KB
実行使用メモリ 8,604 KB
最終ジャッジ日時 2024-06-28 18:28:42
合計ジャッジ時間 31,976 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>

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++){
        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