結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | subsn |
提出日時 | 2023-06-08 17:05:09 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,146 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 30,976 KB |
実行使用メモリ | 13,184 KB |
最終ジャッジ日時 | 2024-06-09 21:53:49 |
合計ジャッジ時間 | 12,658 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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 | -- | - |
ソースコード
#include <stdio.h> #include <malloc.h> char str[700000]; int str_len = 0; /// <summary> /// グローバル変数strの中身を入力された文字列で上書きする /// </summary> void ReadString() { char c = getchar(); str_len = 0; while (c != '\n') { str[str_len] = c; c = getchar(); str_len++; } } /// <summary> /// 入力された数字を返す /// </summary> /// <returns></returns> int ReadNum() { int negate = 0; char c = getchar(); int num = 0; int numCnt = 0; while (c != '\n') { if (c == '-') { negate = 1; } else { num = num * 10 + c - '0'; } c = getchar(); } if (negate == 1) { num *= -1; } return num; } /// <summary> /// 引数*numsのポインタ位置にある配列の中身をstrのスペースで区切られた数字にする /// 渡されたポインタ位置が、strのスペースの数+1個分 静的にメモリが確保された配列である必要がある /// </summary> /// <param name="nums"></param> /// <returns></returns> void GetNums(int* nums, int size) { for (int i = 0;i < size;i++) { nums[i] = 0; } int numIndex = 0; int negate = 0; for (int i = 0;i <= str_len;i++) { if (str[i] == ' ' || i == str_len) { if (negate == 1) { nums[numIndex] *= -1; } negate = 0; numIndex++; continue; } if (str[i] == '-') { negate = 1; continue; } nums[numIndex] = nums[numIndex] * 10 + (str[i] - '0'); } } /// <summary> /// 引数numsの中の値を昇順にソートする /// </summary> /// <param name="nums">ソートしたい配列</param> /// <param name="n">ソートしたい配列の要素数</param> void Sort(int* nums, int n) { for (int i = 0;i < n - 1;i++) { for (int j = i + 1;j < n;j++) { if (nums[i] > nums[j]) { int work = nums[i]; nums[i] = nums[j]; nums[j] = work; } } } } int main() { int n = ReadNum(); int* nums; nums = (int*)malloc(sizeof(int) * n); ReadString(); GetNums(nums,n); Sort(nums,n); int min = 10000000; for (int i = 1;i < n;i++) { if (nums[i] == nums[i - 1]) continue; if (nums[i] - nums[i - 1] < min) min = nums[i] - nums[i - 1]; } printf("%d\n",min); }