結果

問題 No.182 新規性の虜
ユーザー regulusregulus
提出日時 2017-11-22 15:02:53
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 638 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 30,336 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-05-04 20:58:21
合計ジャッジ時間 34,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1,869 ms
5,376 KB
testcase_09 TLE -
testcase_10 AC 3,757 ms
5,376 KB
testcase_11 AC 2,571 ms
5,376 KB
testcase_12 AC 456 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 1 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 3,891 ms
5,376 KB
testcase_19 AC 1,991 ms
5,376 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 AC 1,185 ms
5,376 KB
testcase_23 WA -
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

#define F(i,n) for(int i = 0;i < n;i++)

void x(const int a[],int a_c[],int n){for(int i = 0;i < n;i++) a_c[i] = a[i];}
int y(const int a[],int n){int min,nb;min = a[0]; nb = 0;for(int i = 0;i < n;i++){if(min > a[i]) {min = a[i];nb = i;}}return(nb);}
void z(const int a[],int b[],int n){int nb;int tmp[n];x(a,tmp,n);for(int i = 0;i < n;i++){nb = y(tmp,n);b[i] = tmp[nb];tmp[nb] = 1000000000;}}
int main(void){
	int n,r=0;
	scanf("%d",&n);
	int a[n+2];
	F(i,n)scanf("%d",&a[i]);
	z(a,a,n);
	for(int i=1;i<n;i++){
		if(i==n-1){if(a[i]!=a[i-1])r++;}
		if(a[i]!=a[i+1]&&a[i]!=a[i-1])r++;
	}
	printf("%d\n",r);
	return 0;
}
0