結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | Mizuno |
提出日時 | 2024-10-11 12:30:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 984 bytes |
コンパイル時間 | 961 ms |
コンパイル使用メモリ | 73,448 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 12:30:40 |
合計ジャッジ時間 | 2,008 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 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 | WA | - |
testcase_22 | WA | - |
evil01.txt | AC | 38 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:19:11: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized] 19 | int a,b; | ^
ソースコード
#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,b; bool flag = false; for(int i = 0; i < n - 2; i++){ if(x[i] != x[i + 1]){ flag = true; a = abs(x[i] - x[i + 1]); } } 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]); 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; }