結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
strn5
|
| 提出日時 | 2019-07-22 17:27:40 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 93 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-06-23 18:37:30 |
| 合計ジャッジ時間 | 1,777 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / 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