結果

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

テストケース

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

ソースコード

diff #

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