結果

問題 No.182 新規性の虜
ユーザー ElkElk
提出日時 2018-05-27 14:48:19
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 635 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 22,784 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-06-28 18:30:37
合計ジャッジ時間 22,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 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 1,863 ms
5,376 KB
testcase_09 AC 4,968 ms
6,940 KB
testcase_10 AC 3,762 ms
5,376 KB
testcase_11 AC 2,537 ms
5,376 KB
testcase_12 AC 459 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 554 ms
5,376 KB
testcase_19 AC 388 ms
5,376 KB
testcase_20 AC 219 ms
5,376 KB
testcase_21 AC 610 ms
5,376 KB
testcase_22 AC 292 ms
5,376 KB
testcase_23 AC 1 ms
5,376 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);
            }else if(i != j){
                break;
            }
            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