結果

問題 No.48 ロボットの操縦
ユーザー pajannatpajannat
提出日時 2021-04-05 22:20:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 595 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 53,936 KB
最終ジャッジ日時 2025-01-01 20:01:13
合計ジャッジ時間 2,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,948 KB
testcase_01 AC 32 ms
53,108 KB
testcase_02 AC 30 ms
52,948 KB
testcase_03 AC 32 ms
52,932 KB
testcase_04 AC 30 ms
52,876 KB
testcase_05 AC 32 ms
52,408 KB
testcase_06 AC 31 ms
52,576 KB
testcase_07 AC 31 ms
53,008 KB
testcase_08 AC 34 ms
53,364 KB
testcase_09 AC 31 ms
53,008 KB
testcase_10 AC 29 ms
53,364 KB
testcase_11 AC 36 ms
52,516 KB
testcase_12 AC 33 ms
53,352 KB
testcase_13 AC 31 ms
52,624 KB
testcase_14 AC 32 ms
53,936 KB
testcase_15 AC 34 ms
53,640 KB
testcase_16 AC 33 ms
52,736 KB
testcase_17 AC 32 ms
52,628 KB
testcase_18 AC 32 ms
53,292 KB
testcase_19 AC 31 ms
53,560 KB
testcase_20 AC 32 ms
53,660 KB
testcase_21 AC 31 ms
53,888 KB
testcase_22 AC 32 ms
52,896 KB
testcase_23 AC 32 ms
52,812 KB
testcase_24 AC 36 ms
53,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
X = int(input())
Y = int(input())
L = int(input())

cnt = 0

if X == 0:
	if Y == 0:
		cnt = 0
	elif Y > 0:
		cnt += math.ceil(abs(Y)/L)
	else:
		cnt += math.ceil(abs(Y)/L) + 2
elif X > 0:
	if Y == 0:
		cnt += math.ceil(abs(X)/L) + 1
	elif Y > 0:
		cnt += math.ceil(abs(X)/L) + math.ceil(abs(Y)/L) + 1
	else:
		cnt += math.ceil(abs(X)/L) + math.ceil(abs(Y)/L) + 2
else:
	if Y == 0:
		cnt += math.ceil(abs(X)/L) + 1
	elif Y > 0:
		cnt += math.ceil(abs(X)/L) + math.ceil(abs(Y)/L) + 1
	else:
		cnt += math.ceil(abs(X)/L)+ math.ceil(abs(Y)/L) + 2

print(cnt)
0