結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-11-13 00:03:40 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 145 bytes |
| 記録 | |
| コンパイル時間 | 412 ms |
| コンパイル使用メモリ | 20,692 KB |
| 実行使用メモリ | 15,512 KB |
| 最終ジャッジ日時 | 2026-05-30 08:54:08 |
| 合計ジャッジ時間 | 3,870 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 WA * 8 |
ソースコード
x = int(input()) y = int(input()) z = int(input()) c = abs(x) // z + (x % z != 0) c += x != 0 and y != 0 c += abs(y) // z + (y % z != 0) print(c)