結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | githide3 |
提出日時 | 2018-08-08 20:27:09 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 673 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 8,860 KB |
最終ジャッジ日時 | 2024-09-23 03:59:16 |
合計ジャッジ時間 | 13,187 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
#include <stdio.h> int main(void) { int N, X[100000]; int i, j, min, temp; scanf("%d", &N); for (i = 0; i < N; i++) { scanf("%d", &(X[i])); } min = 1000001; for (i = 0; i < N - 1; i++) { for (j = i + 1; j < N; j++) { if (X[i] == X[j]) { continue; } else if (X[i] < X[j]) { temp = X[j] - X[i]; } else { temp = X[i] - X[j]; } if (min > temp) { min = temp; } } } if (min != 1000001) { printf("%d\n", min); } else { printf("0\n"); } return 0; }