結果

問題 No.135 とりあえず1次元の問題
ユーザー stone_725stone_725
提出日時 2015-09-06 00:31:04
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 459 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 47,820 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2025-01-03 07:37:06
合計ジャッジ時間 1,783 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~
main.cpp:13:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |     scanf("%d", &num);
      |     ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <set>
#include <algorithm>

using namespace std;

int main(){
  int n;
  scanf("%d", &n);
  set<int> s;
  for(int i = 0; i < n; i++){
    int num;
    scanf("%d", &num);
    s.insert(num);
  }
  int before = *s.begin(), ans = 1 << 29;
  if(s.size() == 1){
    ans = 0;
  }
  else{
    for(auto it = s.begin(); ++it != s.end();){
      ans = min(ans, *it - before);
      before = *it;
    }
  }
  printf("%d\n", ans);
  return 0;
}
0