結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
bellangeldindon
|
| 提出日時 | 2017-06-01 21:17:14 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 218 bytes |
| 記録 | |
| コンパイル時間 | 66 ms |
| コンパイル使用メモリ | 81,408 KB |
| 実行使用メモリ | 81,280 KB |
| 最終ジャッジ日時 | 2026-07-18 13:52:58 |
| 合計ジャッジ時間 | 3,083 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 20 |
ソースコード
def movetime(x, max): tmp = x / max if x % max != 0: tmp += 1 return tmp x = int(raw_input()) y = int(raw_input()) max = int(raw_input()) cnt = movetime(y, max) if x != 0: cnt += movetime(x, max) + 1 print cnt
bellangeldindon