結果

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

ソースコード

diff #

import math

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

action = 0

#rotation
if Y < 0:
    action += 2
elif X != 0:
    action += 1

#advance
action += abs(math.ceil(X/L)) + abs(math.ceil(Y/L))

print(action)
0