結果
| 問題 |
No.48 ロボットの操縦
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-03-02 03:29:29 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 5,000 ms |
| コード長 | 212 bytes |
| コンパイル時間 | 551 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-09-17 00:55:43 |
| 合計ジャッジ時間 | 1,809 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
ソースコード
y = int(input())
x = int(input())
l = int(input())
res = 0
if x >= 0 and y == 0:
res += 0
elif x >= 0:
res += 1
else:
res += 2
res += (abs(x) + l - 1) // l
res += (abs(y) + l - 1) // l
print(res)