結果

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

ソースコード

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(abs(ceil(X/L))+abs(ceil(Y/L))+count)
0