結果

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

ソースコード

diff #

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


def countNum(k, L):
    if k == 0:
        return 0
    elif (k % L) == 0:
        return int(k // L)
    else:
        return int((k // L) + 1)
countNum


def solve(X, Y, L):
    count = 0
    if X == 0 and Y == 0:
        return count
    elif Y >= 0:
        if X == 0:
            count = countNum(Y, L)
            return count
        else:
            X = abs(X)
            Y = abs(Y)
            count = countNum(X, L) + countNum(Y, L) + 1
            return count
    elif Y <= 0:
        if X == 0:
            Y = abs(Y)
            count += countNum(Y, L) + 2
            return count
        else:
            X = abs(X)
            Y = abs(Y)
            count = countNum(X, L) + countNum(Y, L) + 2
            return count
solve


num = solve(X, Y, L)
print(num)
0