結果

問題 No.135 とりあえず1次元の問題
ユーザー nukosukenukosuke
提出日時 2016-10-19 16:10:44
言語 C90
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 849 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 23,424 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 07:01:15
合計ジャッジ時間 3,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
evil01.txt RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:10:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |   scanf("%d\n", &N);
      |   ^~~~~~~~~~~~~~~~~
main.c:15:3: warning: ignoring return value of ‘fgets’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |   fgets(line, length, stdin);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

int main() {
  int N, *X;
  char *line;

  scanf("%d\n", &N);
  X = (int *)malloc(sizeof(int) * N);

  int length = 6*N + N-1;
  line = (char *)malloc(sizeof(char) * N);
  fgets(line, length, stdin);

  char *delim = " \n";
  char *tok;
  int i = 0;

  tok = strtok(line, delim);
  while(tok != NULL) {
    X[i] = atoi(tok);
    tok = strtok(NULL, delim);
    i++;
  }

  int j = 0;
  int answer = 1000001; // instead of +INF
  for (i = 0; i < N; i++) {
    int min = 1000001;
    for (j = i+1; j < N; j++) {
      if (X[i] == X[j]) continue;
      int dist = abs(X[i] - X[j]);
      min = dist < min ? dist : min;
    }
    answer = answer < min ? answer : min;
  }

  if (answer == 1000001) answer = 0;
  printf("%d\n", answer);

  free(X);
  free(line);
  return 0;
}
0