結果
問題 | No.182 新規性の虜 |
ユーザー | 👑 testestest |
提出日時 | 2015-08-09 21:27:50 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 160 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 20,352 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 06:17:37 |
合計ジャッジ時間 | 1,149 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,376 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,504 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,504 KB |
testcase_07 | AC | 3 ms
5,504 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 3 ms
5,504 KB |
testcase_14 | AC | 4 ms
5,504 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,504 KB |
testcase_18 | AC | 11 ms
5,504 KB |
testcase_19 | AC | 9 ms
5,504 KB |
testcase_20 | AC | 6 ms
5,376 KB |
testcase_21 | AC | 11 ms
5,376 KB |
testcase_22 | AC | 7 ms
5,504 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 13 ms
5,504 KB |
testcase_25 | AC | 11 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 4 ms
5,376 KB |
evil01.txt | WA | - |
evil02.txt | AC | 16 ms
5,376 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 999983 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’
ソースコード
#define N 999983 int main(){ int a[1000000]={},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; }