結果

問題 No.182 新規性の虜
ユーザー a2011404a2011404
提出日時 2017-03-15 14:13:00
言語 C90
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 266 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 20,480 KB
実行使用メモリ 8,612 KB
最終ジャッジ日時 2024-07-03 23:53:39
合計ジャッジ時間 24,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2,008 ms
6,944 KB
testcase_09 TLE -
testcase_10 AC 4,029 ms
6,940 KB
testcase_11 AC 2,726 ms
6,940 KB
testcase_12 AC 494 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 569 ms
6,944 KB
testcase_19 AC 403 ms
6,944 KB
testcase_20 AC 235 ms
6,940 KB
testcase_21 AC 653 ms
6,940 KB
testcase_22 AC 307 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%d",&n);
      |         ^~~~~~~~~~~~~~
main.c:9:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |                 scanf("%d",&a[i]);
      |                 ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>


int main(void) {
	int i,j,n,a[100000],count=0;
	scanf("%d",&n);

	for(i=0;i<n;i++){
		scanf("%d",&a[i]);
	}

	for(i=0;i<n;i++){
		for(j=0;j<n;j++){
			if(i!=j && a[i]==a[j]) break;
		}
			if(j==n)	count++;
	}
	printf("%d\n",count);
	return 0;

}
0