結果

問題 No.48 ロボットの操縦
ユーザー KozumaKozuma
提出日時 2018-01-11 22:22:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 249 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-23 16:26:03
合計ジャッジ時間 1,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

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

count = 0

if Y >= 0:
	if X != 0:
		count += 1
else:
	count += 2

X = abs(X)
Y = abs(Y)

count = count + int(X / L) + int(Y / L)

if X % L != 0:
	count += 1
if Y % L != 0:
	count += 1

print(count)
0