結果

問題 No.135 とりあえず1次元の問題
ユーザー Taro_ColdTaro_Cold
提出日時 2017-10-09 16:13:10
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 801 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 31,104 KB
実行使用メモリ 8,736 KB
最終ジャッジ日時 2024-04-28 14:22:02
合計ジャッジ時間 12,698 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
evil01.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <math.h>

#define ArraySize 100000

int main(void){
	int Array[ArraySize];
	int n = 0;
	int x = 0;
	int ArrayLength = 0;

	scanf("%d", &n);
	ArrayLength = n;
	for(int i = 0;i < n;i++){
			if(i == 0){
					scanf("%d", &Array[i]);
			}else{
					scanf("%d", &x);
					if(x == Array[i-1]){
							ArrayLength--;
					}else{
							Array[i] = x;
					}
			}
	}

	if(ArrayLength == 1){
			printf("0\n");
			return 0;
	}

	for(int i = 0; i < ArrayLength;i++){
			for(int j = ArrayLength-1;j > i; j--){
					if(Array[j] < Array[j-1]){
							x = Array[j];
							Array[j] = Array[j-1];
							Array[j-1] = x;
					}
			}
	}
	
	x = 1000000;

	for(int i = ArrayLength-1;i > 0;i--){
			n = Array[i] - Array[i-1];
			if(x > n){
					x = n;
			}
	}

	printf("%d\n", x);
	return 0;
}


0