結果

問題 No.182 新規性の虜
ユーザー 👑 testestesttestestest
提出日時 2015-08-09 21:21:48
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 20,352 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 06:17:33
合計ジャッジ時間 1,097 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 10 ms
6,940 KB
testcase_19 AC 8 ms
6,940 KB
testcase_20 AC 6 ms
6,944 KB
testcase_21 AC 11 ms
6,944 KB
testcase_22 AC 7 ms
6,940 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 13 ms
6,940 KB
testcase_25 AC 12 ms
6,940 KB
testcase_26 WA -
testcase_27 AC 4 ms
6,944 KB
evil01.txt WA -
evil02.txt AC 16 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:3:1: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration]
    3 | scanf("%d",&n);
      | ^~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
  +++ |+#include <stdio.h>
    1 | int main(){
main.c:3:1: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch]
    3 | scanf("%d",&n);
      | ^~~~~
main.c:3:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
main.c:6:1: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration]
    6 | printf("%d",s);
      | ^~~~~~
main.c:6:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
main.c:6:1: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
main.c:6:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’

ソースコード

diff #

int main(){
int a[1000000]={},s=0,n,i;
scanf("%d",&n);
for(;~scanf("%d",&n);)a[n%1000000]++;
for(i=0;i<1000000;i++)a[i]-1||s++;
printf("%d",s);
return 0;
}
0