結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-12-22 17:53:12 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 5,000 ms |
| コード長 | 365 bytes |
| コンパイル時間 | 138 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-12-14 14:31:42 |
| 合計ジャッジ時間 | 1,634 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
ソースコード
# coding: utf-8
import math
X = int(input())
Y = int(input())
L = int(input())
if X == 0 and Y == 0:
print(0)
elif Y > 0:
if X == 0:
print(math.ceil(Y / L))
else:
print(math.ceil(Y / L) + 1 + math.ceil(abs(X) / L))
elif Y == 0:
print(1 + math.ceil(abs(X) / L))
else:
print(1 + math.ceil(abs(X) / L) + 1 + math.ceil(abs(Y) / L))