結果

問題 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
コンパイル時間 226 ms
コンパイル使用メモリ 10,916 KB
実行使用メモリ 8,244 KB
最終ジャッジ日時 2023-08-13 09:50:02
合計ジャッジ時間 1,915 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,104 KB
testcase_01 AC 16 ms
8,124 KB
testcase_02 AC 16 ms
8,124 KB
testcase_03 AC 16 ms
8,244 KB
testcase_04 AC 16 ms
8,168 KB
testcase_05 AC 17 ms
8,112 KB
testcase_06 WA -
testcase_07 AC 16 ms
8,116 KB
testcase_08 AC 16 ms
8,172 KB
testcase_09 AC 16 ms
8,116 KB
testcase_10 AC 16 ms
8,188 KB
testcase_11 AC 16 ms
8,096 KB
testcase_12 AC 16 ms
8,184 KB
testcase_13 AC 17 ms
8,244 KB
testcase_14 AC 17 ms
8,172 KB
testcase_15 AC 16 ms
8,116 KB
testcase_16 AC 16 ms
8,088 KB
testcase_17 AC 16 ms
8,112 KB
testcase_18 AC 16 ms
8,116 KB
testcase_19 AC 17 ms
8,040 KB
testcase_20 AC 16 ms
8,088 KB
testcase_21 AC 16 ms
8,116 KB
testcase_22 AC 16 ms
8,096 KB
testcase_23 AC 17 ms
8,184 KB
testcase_24 AC 16 ms
8,156 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