結果

問題 No.48 ロボットの操縦
ユーザー Hissha_Hissha_
提出日時 2018-04-02 09:35:38
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 603 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 29,056 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-26 06:31:15
合計ジャッジ時間 1,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
6,948 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:12:25: warning: implicit declaration of function 'ceil' [-Wimplicit-function-declaration]
   12 |                 m= (int)ceil((double)y/(double)l);
      |                         ^~~~
main.c:2:1: note: include '<math.h>' or provide a declaration of 'ceil'
    1 | #include <stdio.h>
  +++ |+#include <math.h>
    2 | 
main.c:12:25: warning: incompatible implicit declaration of built-in function 'ceil' [-Wbuiltin-declaration-mismatch]
   12 |                 m= (int)ceil((double)y/(double)l);
      |                         ^~~~
main.c:12:25: note: include '<math.h>' or provide a declaration of 'ceil'
main.c:14:25: warning: incompatible implicit declaration of built-in function 'ceil' [-Wbuiltin-declaration-mismatch]
   14 |                 m= (int)ceil(fabs((double)y)/(double)l) + 2;
      |                         ^~~~
main.c:14:25: note: include '<math.h>' or provide a declaration of 'ceil'
main.c:14:30: warning: implicit declaration of function 'fabs' [-Wimplicit-function-declaration]
   14 |                 m= (int)ceil(fabs((double)y)/(double)l) + 2;
      |                              ^~~~
main.c:14:30: note: include '<math.h>' or provide a declaration of 'fabs'
main.c:14:30: warning: incompatible implicit declaration of built-in function 'fabs' [-Wbuiltin-declaration-mismatch]
main.c:14:30: note: include '<math.h>' or provide a declaration of 'fabs'
main.c:16:25: warning: incompatible implicit declaration of built-in function 'ceil' [-Wbuiltin-declaration-mismatch]
   16 |                 m= (int)ceil(fabs((double)x)/(double)l) + 2;
      |                         ^~~~
main.c:16:25: note: include '<math.h>' or provide a declaration of 'ceil'
main.c:16:30: warning: incompatible implicit declaration of built-in function 'fabs' [-Wbuiltin-declaration-mismatch]
   16 |                 m= (int)ceil(fabs((double)x)/(double)l) + 2;
      |                              ^~~~
main.c:16:30: note: include '<math.h>' or provide a declar

ソースコード

diff #

#include <stdio.h>

int main(void) {
	// your code goes here
	int x, y, l, m;
	
	scanf("%d", &x);
	scanf("%d", &y);
	scanf("%d", &l);
	
	if(x==0 && y>0){
		m= (int)ceil((double)y/(double)l);
	}else if(x==0 && y<0){
		m= (int)ceil(fabs((double)y)/(double)l) + 2;
	}else if(y==0){
		m= (int)ceil(fabs((double)x)/(double)l) + 2;
	}else if(x==0 && y==0){
		m= 0;
	}else if(y>0){
		m= (int)ceil(fabs((double)x)/(double)l) + (int)ceil(fabs((double)y)/(double)l) + 1;
	}else if(y<0){
		m= (int)ceil(fabs((double)x)/(double)l) + (int)ceil(fabs((double)y)/(double)l) + 2;
	}
	
	printf("%d\n", m);
	
	return 0;
}
0