結果

問題 No.48 ロボットの操縦
ユーザー wewewebweweweb
提出日時 2021-03-24 20:27:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 654 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-11-26 23:22:35
合計ジャッジ時間 8,546 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 TLE -
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 186 ms
10,624 KB
testcase_08 AC 82 ms
10,624 KB
testcase_09 AC 52 ms
10,624 KB
testcase_10 AC 38 ms
10,624 KB
testcase_11 AC 41 ms
10,624 KB
testcase_12 AC 82 ms
10,624 KB
testcase_13 AC 39 ms
10,624 KB
testcase_14 AC 41 ms
10,752 KB
testcase_15 AC 89 ms
10,624 KB
testcase_16 AC 36 ms
10,752 KB
testcase_17 AC 48 ms
10,752 KB
testcase_18 AC 55 ms
10,624 KB
testcase_19 AC 43 ms
10,624 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 26 ms
10,624 KB
testcase_24 AC 27 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

des = [X , Y] #destination
Lobot = [0, 0]
count = 0


while des[1] != Lobot[1]:
    if abs(des[1] - Lobot[1]) >= L:
        if des[1] < 0:
            Lobot[1] -= L
        else:
            Lobot[1] += L
    else:
        Lobot[1] = des[1]
    count += 1


while des[0] != Lobot[0]:
    if abs(des[0] - Lobot[0]) >= L:
        if des[0] < 0:
            Lobot[0] -= L
        else:
            Lobot[0] += L
    else:
        Lobot[0] = des[0]
    count += 1

if des[1] >= 0 and des[0] != 0:
    count += 1
elif des[1] < 0:
    count += 2
elif des[1] >= 0 and des[0] == 0:
    count += 0

print(count)
0