結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | Mizuno |
提出日時 | 2024-10-11 12:40:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,054 bytes |
コンパイル時間 | 711 ms |
コンパイル使用メモリ | 73,952 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-11 12:40:05 |
合計ジャッジ時間 | 1,777 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 38 ms
6,820 KB |
testcase_22 | WA | - |
evil01.txt | AC | 37 ms
6,820 KB |
ソースコード
#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 x[n]; for(int i = 0; i < n; i++) cin >> x[i]; sort(x,x + (n - 1)); int a = 0,b = 0; bool flag = false; for(int i = 0; i < n - 1; i++){ if(x[i] != x[i + 1]){ flag = true; a = abs(x[i] - x[i + 1]); break; } } if(!flag) { cout << 0; return 0; } for(int i = (n - 1); i >= 1; i--){ if(x[i] != x[i - 1]){ b = abs(x[i] - x[i - 1]); break; } } a = a < b ? a:b; cout << a; // 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; // } // } // if(min == INT_MAX)cout << 0; // else cout << min; }