結果

問題 No.48 ロボットの操縦
ユーザー kisaragi211
提出日時 2018-01-13 22:50:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 206 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-24 00:59:35
合計ジャッジ時間 1,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil
X = int(input())
Y = int(input())
L = int(input())
count = 0
if Y < 0 :
    count += 2
else:
    if X == 0:
        count -= 1
    count += 1
print(ceil(abs(X)/L)+ceil(abs(Y)/L)+count)
0