結果

問題 No.48 ロボットの操縦
ユーザー dashi_dragonsdashi_dragons
提出日時 2017-02-10 19:35:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-08 02:43:27
合計ジャッジ時間 1,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 26 ms
10,624 KB
testcase_24 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def check_range(a,b,x):
	if a > x or b < x:
		sys.exit()

def check_eq(a,b):
	if a != b:
		sys.exit()

def cal_move(x,l):

	if x % l == 0:
		return x // l
	else:
		return x // l + 1

X = int(input())
check_range(-1000000000,1000000000,X)

Y = int(input())
check_range(-1000000000,1000000000,Y)

L = int(input())
check_range(1,1000000000,L)

cnt = 0

if Y > 0:
	cnt += cal_move(Y,L)
	
	if X > 0:
		cnt += 1
		cnt += cal_move(X,L)
	elif X < 0:
		cnt += 1
		cnt += cal_move(-X,L)

elif Y < 0:
	if X > 0:
		cnt += 1
		cnt += cal_move(X,L)
	elif X < 0:
		cnt += 1
		cnt += cal_move(-X,L)
	else:
		cnt += 1

	cnt += 1
	cnt += cal_move(-Y,L)

else:
	if X > 0:
		cnt += 1
		cnt += cal_move(X,L)
	elif X < 0:
		cnt += 1
		cnt += cal_move(-X,L)

print(cnt)
0