結果

問題 No.48 ロボットの操縦
コンテスト
ユーザー zhongcunyonggui57-hue
提出日時 2025-11-28 15:55:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2025-11-28 15:55:14
合計ジャッジ時間 2,242 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import math

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

if X == 0:
    Nx = 0
else:
    Nx = (abs(X) + L - 1) // L

if Y == 0:
    Ny = 0
else:
    Ny = (abs(Y) + L - 1) // L
    

total_forward_moves = Nx + Ny

if X == 0 and Y == 0:
    print(0)
    
elif X == 0:
    if Y > 0:
        print(total_forward_moves)
    else:
        print(total_forward_moves + 2)

elif Y == 0:
    print(total_forward_moves + 1)

else:
    if Y > 0:
       
        print(total_forward_moves + 1)
    else: 
        print(total_forward_moves + 2)
0