結果

問題 No.135 とりあえず1次元の問題
ユーザー monburan_0401monburan_0401
提出日時 2018-09-05 15:37:20
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 763 bytes
コンパイル時間 1,018 ms
コンパイル使用メモリ 31,616 KB
実行使用メモリ 8,744 KB
最終ジャッジ日時 2024-11-15 16:57:41
合計ジャッジ時間 31,696 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <math.h>
#include <stdlib.h>
int main(void){
	int N;
	int num[100000];
	int min;		//	求める最小値
	int L;			//	差の絶対値(2点間の距離)
	
	scanf("%d",&N);
	for(int i = 0; i < N; i++){
		scanf("%d",&num[i]);
	}
	
	int change;
	for(int i = 0; i < N; i++){
	    for(int j = i; j < N; j++){
	        if(num[i] > num[j]){
	            change = num[i];
	            num[i] = num[j];
	            num[j] = change;
	        }
	    }
	}
	
	min = 1000000000;		//	入力の最大値
	for(int j = 0; j < N-1; j++){
		for(int k = j; k < N; k++){
			L = abs(num[k] - num[j]);
			if( (L < min) && (L != 0) ){
				min = L;
			}
		}
	}
	
	if(min == 1000000000){
		printf("0\n");
		return 0;
	}

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