結果

問題 No.48 ロボットの操縦
ユーザー kentoserma
提出日時 2019-12-26 08:51:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-02 13:29:45
合計ジャッジ時間 1,975 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def PositionCounter(XY):
    cnt = 0

    if XY < 0 :
        XY *= -1
        cnt += 1

    Syo = XY // L
    Amari = XY % L

    if Amari == 0:
        cnt = cnt + Syo * 1
    else:
        cnt = cnt + (Syo * 1) + 1

    return cnt

print(PositionCounter(X) + PositionCounter(Y))
0