結果

問題 No.135 とりあえず1次元の問題
ユーザー temptemp
提出日時 2015-02-16 12:16:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 869 ms
コンパイル使用メモリ 70,844 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-11 01:50:49
合計ジャッジ時間 1,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
5,632 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 5 ms
5,504 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 6 ms
5,760 KB
testcase_17 AC 5 ms
5,504 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 34 ms
5,376 KB
testcase_22 AC 38 ms
7,296 KB
evil01.txt AC 32 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <algorithm>
#include <functional>
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cctype>
#include <string>

using namespace std;

int x[1000001];
int main() {
  int n;
  cin >> n;
  for (int i = 0; i < n; i++) {
    int t;
    cin >> t;
    x[t] = 1;
  }
  if (n <= 1) {
    std::cout << 0 << std::endl;
    return 0;
  }
  int ans = 2e9;
  int p = 0;
  while (!x[p]) p++;
  for (int i = p+1; i <= 1000000; i++) {
    if (x[i]) {
      ans = min(ans, i-p);
      p = i;
    }
  }
  std::cout << ans << std::endl;
}
0