結果

問題 No.135 とりあえず1次元の問題
ユーザー regulusregulus
提出日時 2017-11-22 18:52:36
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 21:02:51
合計ジャッジ時間 1,179 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 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 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 11 ms
5,376 KB
testcase_22 AC 12 ms
5,376 KB
evil01.txt AC 12 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

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

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