結果

問題 No.135 とりあえず1次元の問題
ユーザー regulusregulus
提出日時 2017-11-22 18:48:17
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 669 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 30,592 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-05-04 21:02:50
合計ジャッジ時間 13,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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>

#define F(i,n) for(int i = 0;i < n;i++)
#define N 1000001
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] = N;}}

int main(void){
	int n,t,r=N;
	scanf("%d",&n);
	int a[n];
	F(i,n)scanf("%d",&a[i]);
	z(a,a,n);
	F(i,n){
		if(i==n-1)break;
		t=a[i]-a[i+1];
		if(t!=0){
			if(t<0)t*=-1;
			if(r>t){
				r=t;
			}
		}
	}
	if(r==N)r=0;
	printf("%d",r);
	return 0;
}
0