結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
strn5
|
| 提出日時 | 2019-07-22 17:27:40 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 335 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-03-08 23:48:41 |
| 合計ジャッジ時間 | 3,691 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 WA * 23 |
ソースコード
import math X = int(input()) Y = int(input()) L = int(input()) X_cnt = int(math.ceil(abs(X) / L)) Y_cnt = int(math.ceil(abs(Y) / L)) print(X_cnt + Y_cnt)
strn5