結果

問題 No.48 ロボットの操縦
ユーザー yama6k16yama6k16
提出日時 2019-11-30 22:29:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,500 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-05-01 03:20:05
合計ジャッジ時間 1,883 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 32 ms
11,008 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 31 ms
11,008 KB
testcase_06 WA -
testcase_07 AC 32 ms
11,008 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 AC 32 ms
11,008 KB
testcase_10 AC 32 ms
11,008 KB
testcase_11 AC 31 ms
11,008 KB
testcase_12 AC 31 ms
11,136 KB
testcase_13 AC 32 ms
11,008 KB
testcase_14 AC 31 ms
11,008 KB
testcase_15 AC 32 ms
11,008 KB
testcase_16 AC 32 ms
11,008 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 33 ms
11,008 KB
testcase_19 AC 32 ms
11,008 KB
testcase_20 AC 32 ms
11,008 KB
testcase_21 AC 32 ms
11,008 KB
testcase_22 AC 32 ms
11,008 KB
testcase_23 AC 31 ms
11,008 KB
testcase_24 AC 34 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
X = int(input())
Y = int(input())
L = int(input())
order = 0
x = abs(X)
y = abs(Y)
if  (X != 0) and (Y > 0):
    op_x = int(math.floor(x/L))
    op_y = int(math.floor(y/L))
    order = 1
    if x >= L:
        if x == L * op_x:
            order += op_x
        elif x != L * op_x:
            order += op_x + 1
    elif x < L:
        order += 1
    if y >= L:
        if Y == L * op_y:
            order += op_y
        elif Y != L * op_y:
            order += op_y + 1
    elif y < L:
        order += 1
    print(order)

elif  (X != 0) and (Y < 0):
    op_x = int(math.floor(x/L))
    op_y = int(math.floor(y/L))
    order = 2
    if x >= L:
        if x == L * op_x:
            order += op_x
        elif x != L * op_x:
            order += op_x + 1
    elif x < L:
        order += 1
    if y >= L:    
        if y == L * op_y:
            order += op_y
        elif y != L * op_y:
            order += op_y + 1
    elif y < L:
        order += 1
    print(order)

elif (X != 0) and (Y == 0):
    op_x = int(math.floor(x/L))
    if x >= L:
        if x == L * op_x:
            order += op_x
        elif x != L * op_x:
            order += op_x + 1
    elif x < L:
        order += 1

    print(order)

else:
    op_y = int(math.floor(y / L))
    if y >= L:
        if y == L * op_y:
            order += op_y
        elif y != L * op_y:
            order += op_y + 1
    else:
        order += 1
    if Y < 0:
        order += 2
    if Y == 0:
        order = 0
    print(order)
0