結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
gasin
|
| 提出日時 | 2016-03-05 11:34:23 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 225 bytes |
| 記録 | |
| コンパイル時間 | 1,240 ms |
| コンパイル使用メモリ | 20,568 KB |
| 実行使用メモリ | 15,236 KB |
| 最終ジャッジ日時 | 2026-04-11 18:13:31 |
| 合計ジャッジ時間 | 3,625 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 WA * 17 |
ソースコード
import math x = input() y = input() l = input() turn = 0 x = int(x) y = int(y) l = int(l) if int(x) >= 0: if int(y) != 0: turn = 1 else: turn = 0 else: turn = 2 print(math.ceil(abs(x)/l)+math.ceil(abs(y)/l)+turn)
gasin