結果

問題 No.716 距離
ユーザー どららどらら
提出日時 2018-07-27 22:30:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 1,728 ms
コンパイル使用メモリ 171,804 KB
実行使用メモリ 9,172 KB
最終ジャッジ日時 2024-07-05 01:37:19
合計ジャッジ時間 4,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
8,792 KB
testcase_01 AC 76 ms
8,020 KB
testcase_02 AC 76 ms
8,020 KB
testcase_03 AC 77 ms
9,172 KB
testcase_04 AC 77 ms
8,788 KB
testcase_05 AC 75 ms
7,888 KB
testcase_06 AC 77 ms
7,888 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 54 ms
8,408 KB
testcase_11 AC 16 ms
6,940 KB
testcase_12 AC 70 ms
8,408 KB
testcase_13 AC 47 ms
8,276 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 63 ms
8,400 KB
testcase_16 AC 26 ms
6,940 KB
testcase_17 AC 68 ms
8,664 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 19 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 9 ms
6,948 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 53 ms
7,636 KB
testcase_25 AC 17 ms
6,940 KB
testcase_26 AC 32 ms
6,944 KB
testcase_27 AC 40 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 33 ms
6,940 KB
testcase_30 AC 32 ms
6,944 KB
testcase_31 AC 49 ms
8,152 KB
testcase_32 AC 39 ms
6,940 KB
testcase_33 AC 36 ms
6,944 KB
testcase_34 AC 25 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 6 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 13 ms
6,944 KB
testcase_39 AC 34 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;


int main(){
  int N;
  cin >> N;
  vector<int> v;
  rep(i,N){
    int a;
    cin >> a;
    v.push_back(a);
  }
  vector<int> w;
  rep(i,N){
    rep(j,N){
      if(i==j) continue;
      w.push_back(abs(v[i]-v[j]));
    }
  }
  sort(ALLOF(w));
    
  cout << w[0] << endl;
  cout << w.back() << endl;
  
  return 0;
}
0