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