結果

問題 No.370 道路の掃除
ユーザー HankHank
提出日時 2016-05-24 21:05:55
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 563 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 23,552 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-07 06:44:28
合計ジャッジ時間 989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 0 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 0 ms
5,248 KB
testcase_06 AC 0 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 0 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 0 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 0 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 0 ms
5,248 KB
testcase_26 AC 0 ms
5,248 KB
testcase_27 AC 0 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 WA -
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:14:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |     scanf("%d",&d[i]);
      |     ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(){
  int n, m, *d, *r, result=10000000;
  int i,buff;
  int left,right;
  
  scanf("%d %d",&n,&m);
  
  d=(int*)malloc(sizeof(int)*m);
  r=(int*)malloc(sizeof(int)*(m-n+1));
  for(i=0;i<m;i++){
    scanf("%d",&d[i]);
  }
  for(i=0;i<m-n+1;i++){
    (d[i]>0)?(left=0):(left = -d[i]);
    (d[i+n-1]<0)?(right=0):(right=d[i+n-1]);
    
    r[i]=fmin(2*left+right,2*right+left);
  
    }
  for(i=0;i<m-n+1;i++){
    if(r[i]<result)result=r[i];
  }
  printf("%d\n",result);
  
  free(d);
  return 0;
}
0