結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | sk3388607083 |
提出日時 | 2018-06-21 20:54:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 563 bytes |
コンパイル時間 | 180 ms |
コンパイル使用メモリ | 24,832 KB |
実行使用メモリ | 8,484 KB |
最終ジャッジ日時 | 2024-06-30 17:41:38 |
合計ジャッジ時間 | 12,833 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
evil01.txt | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:24:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 24 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:26:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | scanf("%d", &X[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<stdlib.h> void sort(int *a, int size){ int i, j, tmp; for(i = 0 ; i < size-1; i++){ for(j = size-1; j > i; j--){ if(a[j-1] > a[j]){ tmp = a[j-1]; a[j-1] = a[j]; a[j] = tmp; } } } } int main(void){ int i; int N, X[100000]; int min, tmp; min = 0x7FFFFFFF; scanf("%d", &N); for(i = 0 ; i < N; i++){ scanf("%d", &X[i]); } sort(X, N); for(i = 0; i < N - 1; i++){ tmp = X[i+1] - X[i]; if(tmp != 0){ if(min > tmp) min = tmp; } } printf("%d\n", min); return 0; }