結果

問題 No.716 距離
ユーザー Mcpu3Mcpu3
提出日時 2018-07-28 09:57:58
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 27,904 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 18:16:55
合計ジャッジ時間 1,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void)
{
    int n,a,t,b,m=200000,i;
    scanf("%d%d",&n,&b);
    t=b;
    for(i=1;i<n;i++){
        scanf("%d",&a);
        if(m>a-t)m=a-t;
        t=a;
    }
    printf("%d\n%d",m,a-b);
    return 0;
}
0