結果

問題 No.48 ロボットの操縦
ユーザー ajisayajisay
提出日時 2016-03-30 05:22:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-21 18:36:45
合計ジャッジ時間 1,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())
Y = int(input())
L = int(input())
C = 0
def robot(XY, L):
    XY = divmod(abs(XY), L)
    if XY[1] == 0:
       return XY[0]
    else:
       return XY[0] + 1

if Y < 0:
    C += 2
else:
    if X != 0:
        C += 1

print(robot(X, L,) + robot(Y, L,) + C)
0