結果
問題 | No.48 ロボットの操縦 |
ユーザー | weweweb |
提出日時 | 2021-03-24 20:27:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 654 bytes |
コンパイル時間 | 269 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-05-05 05:22:02 |
合計ジャッジ時間 | 6,957 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
11,008 KB |
testcase_01 | AC | 26 ms
10,880 KB |
testcase_02 | AC | 28 ms
10,880 KB |
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 | -- | - |
ソースコード
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)