結果

問題 No.182 新規性の虜
ユーザー BantakoBantako
提出日時 2017-06-27 20:20:11
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 459 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 13,480 KB
最終ジャッジ日時 2023-12-24 22:37:36
合計ジャッジ時間 23,788 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,676 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 0 ms
6,676 KB
testcase_03 AC 0 ms
6,676 KB
testcase_04 AC 0 ms
6,676 KB
testcase_05 AC 0 ms
6,676 KB
testcase_06 AC 1 ms
6,676 KB
testcase_07 AC 1 ms
6,676 KB
testcase_08 AC 1,788 ms
6,676 KB
testcase_09 AC 4,800 ms
6,676 KB
testcase_10 AC 3,589 ms
6,676 KB
testcase_11 AC 2,439 ms
6,676 KB
testcase_12 AC 442 ms
6,676 KB
testcase_13 AC 1 ms
6,676 KB
testcase_14 AC 1 ms
6,676 KB
testcase_15 AC 1 ms
6,676 KB
testcase_16 AC 0 ms
6,676 KB
testcase_17 AC 0 ms
6,676 KB
testcase_18 AC 848 ms
6,676 KB
testcase_19 AC 562 ms
6,676 KB
testcase_20 AC 295 ms
6,676 KB
testcase_21 AC 1,000 ms
6,676 KB
testcase_22 AC 409 ms
6,676 KB
testcase_23 AC 1 ms
6,676 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    3 | main(){
      | ^~~~
main.cpp: In function ‘int main()’:
main.cpp:5:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |     scanf("%d",&N);
      |     ~~~~~^~~~~~~~~
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%d",&num[i]);
      |         ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int num[100000];
main(){
    int N;
    scanf("%d",&N);
    for(int i = 0;i < N;i++){
        scanf("%d",&num[i]);
    }
    int count = 0;
    for(int i = 0;i < N;i++){
        if(!num[i]){continue;}
       int target = num[i];
       int c = 0;
       for(int j = i+1;j < N;j++){
           if(num[j] == target){
               num[j] = 0;
               c++;
           }
       }
       if(!c){count++;}
    }
    printf("%d\n",count);
}
0