結果
| 問題 | No.135 とりあえず1次元の問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-10-11 12:19:58 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 552 bytes |
| 記録 | |
| コンパイル時間 | 403 ms |
| コンパイル使用メモリ | 87,540 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-27 19:43:36 |
| 合計ジャッジ時間 | 12,435 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 19 WA * 1 TLE * 2 |
ソースコード
#include <iostream>
#include <algorithm>
#include <climits>
#include <math.h>
using namespace std;
int main(void){
// Your code here!
int n;
cin >> n;
if(n <= 1){
cout << 0;
return 0;
}
int min = INT_MAX;
int x[n];
for(int i = 0; i < n; i++) cin >> x[i];
for(int i = 0; i < n - 1; i++) {
for(int j = i + 1; j < n; j++) {
if(x[i] == x[j])continue;
int ab = abs(x[i] - x[j]);
if(min > ab)min = ab;
}
}
cout << min;
}