結果

問題 No.135 とりあえず1次元の問題
ユーザー Taro_ColdTaro_Cold
提出日時 2017-10-09 17:59:44
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 748 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-11-17 07:00:14
合計ジャッジ時間 37,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 8 ms
19,072 KB
testcase_02 AC 10 ms
16,576 KB
testcase_03 AC 11 ms
9,600 KB
testcase_04 AC 118 ms
9,600 KB
testcase_05 AC 119 ms
9,516 KB
testcase_06 AC 118 ms
9,600 KB
testcase_07 AC 118 ms
9,556 KB
testcase_08 AC 119 ms
9,600 KB
testcase_09 AC 118 ms
9,472 KB
testcase_10 AC 120 ms
9,600 KB
testcase_11 AC 119 ms
9,600 KB
testcase_12 AC 366 ms
9,600 KB
testcase_13 AC 132 ms
9,600 KB
testcase_14 AC 884 ms
9,600 KB
testcase_15 AC 367 ms
9,728 KB
testcase_16 AC 972 ms
9,728 KB
testcase_17 AC 911 ms
9,504 KB
testcase_18 AC 164 ms
9,728 KB
testcase_19 AC 820 ms
9,600 KB
testcase_20 AC 631 ms
9,468 KB
testcase_21 TLE -
testcase_22 TLE -
evil01.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define ArraySize 1000001

int main(void){
		int Array1[ArraySize];
		int Array2[ArraySize];
		for(int i = 0;i < ArraySize;i++){
				Array1[i] = -1;
				Array2[i] = -1;
		}
		int n = 0;
		int x = 0;
		int k = 0;
		int y = 1000000;

		scanf("%d", &n);
		for(int j = 0;j < n;j++){
				scanf("%d", &x);
				for(int i = 0;i < ArraySize;i++){
						if(i == x){
								Array1[i] = x;
						}
				}
		}

		for(int i = 0;i < ArraySize;i++){
				if(Array1[i] != -1){
						Array2[k] = Array1[i];
						k++;
				}
		}

		if(k==1){
				printf("0\n");
				return 0;
		}
		
		for(int i = k-1;i > 0;i--){
				if(Array2[i]-Array2[i-1] < y){
						y = Array2[i]-Array2[i-1];
				}
		}

		printf("%d\n", y);

		return 0;
}



0