結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
toshi_allneko
|
| 提出日時 | 2020-04-05 17:19:37 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 313 bytes |
| 記録 | |
| コンパイル時間 | 318 ms |
| コンパイル使用メモリ | 20,568 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-03-24 16:00:18 |
| 合計ジャッジ時間 | 3,694 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 WA * 2 |
ソースコード
# -*- coding: utf-8 -*-
x = int(input())
y = int(input())
l = int(input())
result = -1
if x==0 and 0<y:
result=0
elif (0<x and 0<=y) or (x<0 and 0<y):
result = 1
else:
result = 2
x,y = abs(x), abs(y)
result += int(x/l) + int(y/l)
if x%l > 0:
result += 1
if y%l > 0:
result += 1
print(result)
toshi_allneko