結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-27 13:12:57 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 387 bytes |
| コンパイル時間 | 279 ms |
| コンパイル使用メモリ | 12,032 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2025-11-27 13:13:00 |
| 合計ジャッジ時間 | 2,490 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 WA * 18 |
ソースコード
X=int(input())
Y=int(input())
L=int(input())
if X % L == 0 and abs(X) >= L:
x = X // L
elif X % L != 0 and abs(X) >= L:
x = X // L + 1
else:
x = 1
if Y % L == 0 and abs(Y) >= L:
y = Y // L
if Y % L != 0 and abs(Y) >= L:
y = Y // L + 1
else:
y = 1
x = abs(x)
y = abs(y)
if X == 0 and Y > 0:
print(x+y)
elif Y > 0:
print(x+y+1)
elif Y < 0:
print(x+y+2)