結果

問題 No.48 ロボットの操縦
ユーザー akitsugu777
提出日時 2018-10-23 15:51:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-19 04:12:18
合計ジャッジ時間 1,730 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8 WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
y = int(input())
d = int(input())

y1, y2 = divmod(y, d)
x1, x2 = divmod(x, d)

if y > 0 and y1 < 0:
    y1 = 0
if x > 0 and x1 < 0:
    x1 = 0

if y2 != 0:
    y2 = 1
if x2 != 0:
    x2 = 1

z = abs(y1) + y2 + abs(x1) + x2

if y > 0 and x != 0:
    z += 1
elif y < 0:
    z += 2

print(z)
0