結果

問題 No.370 道路の掃除
ユーザー HankHank
提出日時 2016-05-24 19:25:32
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 709 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-16 12:21:24
合計ジャッジ時間 1,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 WA -
testcase_25 WA -
testcase_26 RE -
testcase_27 WA -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:9:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |   scanf("%d %d",&n,&m);
      |   ^~~~~~~~~~~~~~~~~~~~
main.c:13:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |     scanf("%d",&d[i]);
      |     ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
int main(){
  int n, m, *d;
  int i,j,buff;
  int min, d_num, d_inside=0;
  int result = 0;
  
  scanf("%d %d",&n,&m);
  
  d=(int*)malloc(sizeof(int)*n);
  for(i=0;i<m;i++){
    scanf("%d",&d[i]);
  }

  //-----sort--------
  for(i=0;i<m-1;i++){
    min = 10000;
    for(j=i;j<m;j++){
      buff=d[j]-d_inside;
      (buff>0)?(buff=buff):(buff=-buff);
      if(buff<min){
	min = buff;
	d_num = j;
      } 
    }
     d_inside=d[d_num];
     buff=d[i];
     d[i]=d[d_num];
     d[d_num]=buff;
  }
  //-----------------
  result += d[0];
  for(i=1;i<n;i++){
    buff=d[i]-d[i-1];
    (buff>0)?(buff=buff):(buff=-buff);
    result += buff;
  }
  
  free(d);
  return 0;
}
0