結果

問題 No.182 新規性の虜
ユーザー TLwiegehttTLwiegehtt
提出日時 2015-07-08 01:33:37
言語 C90
(gcc 12.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 356 bytes
コンパイル時間 686 ms
コンパイル使用メモリ 20,992 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-26 19:28:36
合計ジャッジ時間 38,566 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,784 KB
testcase_01 AC 1 ms
6,784 KB
testcase_02 AC 1 ms
10,624 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2,022 ms
5,248 KB
testcase_09 TLE -
testcase_10 AC 4,121 ms
5,248 KB
testcase_11 AC 2,723 ms
5,248 KB
testcase_12 AC 508 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 990 ms
5,248 KB
testcase_19 AC 648 ms
5,248 KB
testcase_20 AC 333 ms
5,248 KB
testcase_21 AC 1,150 ms
5,248 KB
testcase_22 AC 466 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 TLE -
testcase_25 AC 12 ms
5,248 KB
testcase_26 AC 93 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         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 cnt = 0;
	int i,j,n;
	int a[100010];
	scanf("%d", &n);
	for(i=0;i<n;i++){
		scanf("%d", &a[i]);
	}
	for(i=0;i<n;i++){
		int num = a[i];
		if(a[i] == 0){continue;}
		
		for(j=i+1;j<n;j++){
			if(num == a[j]){
				a[i] = 0;
				a[j] = 0;
			}
		}
		if(a[i] != 0){
			cnt++;
		}
	}
	
	printf("%d\n", cnt);
	return 0;
}
0