結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | kaffelun |
提出日時 | 2017-08-26 16:49:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 436 ms |
コンパイル使用メモリ | 49,024 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-15 17:46:26 |
合計ジャッジ時間 | 1,439 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | WA | - |
testcase_22 | AC | 22 ms
6,816 KB |
evil01.txt | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:11:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%d", &t); | ~~~~~^~~~~~~~~~ main.cpp:22:27: warning: ‘m’ may be used uninitialized in this function [-Wmaybe-uninitialized] 22 | if(a && m > a) m = a; | ~~^~~
ソースコード
#include <cstdio> #include <vector> #include <algorithm> #include <cmath> using namespace std; int main() { int N, t; scanf("%d", &N); vector<int> X; for(int i = 0; i < N; i++) { scanf("%d", &t); X.push_back(t); } if(!N) { printf("0\n"); return 0; } sort(X.begin(), X.end()); int m; for(int i = 0; i < N - 1; i++) { int a = abs(X[i] - X[i + 1]); if(a && m > a) m = a; } printf("%d\n", m); }