結果
問題 | No.48 ロボットの操縦 |
ユーザー | R N |
提出日時 | 2020-07-25 17:19:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,307 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-06-27 10:15:01 |
合計ジャッジ時間 | 6,837 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,496 KB |
testcase_01 | AC | 28 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
# coding:utf-8 # ロボットの目指す座標(X,Y)とロボットの最大前進可能距離Lを用意する X = int(input()) Y = int(input()) L = int(input()) # ロボットの方向変換回数カウンタ変数を作っておく # ロボットX方向に進んだ距離を入れる変数と動かした回数をカウントする変数を作っておく C = 0 R_x = 0 C_x = 0 # X軸に対して進行方向を向かせる(初期値は+Xの方向を向いている) # 座標に関係なく、方向変換は最大2回しか行われない if X < 0 and Y < 0: C += 2 elif X == 0: pass else: C += 1 # whileループでX方向に動かす # 計算を単純化させる為、座標を絶対値表現にしておく X = abs(X) while True: if X / 2 <= R_x: break else: R_x += L C_x += 1 if R_x == X: pass else: C_x += 1 # ロボットY方向に進んだ距離を入れる変数と動かした回数をカウントする変数を作っておく R_y = 0 C_y = 0 # whileループでY方向に動かす # 計算を単純化させる為、座標を絶対値表現にしておく Y = abs(Y) while True: if Y / 2 <= R_y: break else: R_y += L C_y += 1 if R_y == Y: pass else: C_y += 1 ans = C + C_x + C_y print(ans)