結果

問題 No.48 ロボットの操縦
ユーザー zuvizudarzuvizudar
提出日時 2016-12-22 00:50:09
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 20,608 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-08 10:52:26
合計ジャッジ時間 1,448 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 0 ms
6,944 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 0 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 0 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
6,944 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1 ms
6,944 KB
testcase_23 WA -
testcase_24 AC 0 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:4:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 |         scanf("%ld%ld%ld",&X,&Y,&L);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int main(){
	long int X,Y,L,i=0,j=0,ans=0,flag=0;
	scanf("%ld%ld%ld",&X,&Y,&L);

	if(X<0){
		X=-X;
		i++;
	}
	if(Y<0){
		Y=-Y;
		j++;
	}

	if(X%L==0)
		ans=ans+X/L;
	else
		ans=ans+X/L+1;
	if(Y%L==0)
		ans=ans+Y/L;
	else
		ans=ans+Y/L+1;

	if(X==0){
		if(j==0)
			ans++;
	}
	if(j!=0)
		ans+=2;
	

printf("%ld\n",ans);
	return 0;
}
0