結果
問題 | No.48 ロボットの操縦 |
ユーザー | roiti46 |
提出日時 | 2015-02-09 23:01:36 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 12 ms / 5,000 ms |
コード長 | 151 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 7,076 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-11-21 18:15:57 |
合計ジャッジ時間 | 1,301 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
X = int(raw_input()) Y = int(raw_input()) L = int(raw_input()) ans = (2 if Y < 0 else (1 if X != 0 else 0)) + (abs(X)+L-1)/L + (abs(Y)+L-1)/L print ans