結果
問題 | No.48 ロボットの操縦 |
ユーザー | sasakki |
提出日時 | 2016-05-30 20:22:26 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 120 ms / 5,000 ms |
コード長 | 450 bytes |
コンパイル時間 | 2,130 ms |
コンパイル使用メモリ | 74,580 KB |
実行使用メモリ | 41,580 KB |
最終ジャッジ日時 | 2024-11-21 18:42:51 |
合計ジャッジ時間 | 5,881 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
import java.util.*; class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); int X = Integer.parseInt(sc.next()); int Y = Integer.parseInt(sc.next()); int L = Integer.parseInt(sc.next()); int ans = (Math.abs(X)+L-1)/L + (Math.abs(Y)+L-1)/L; if(Y>=0){ if(X!=0){ ans++; } } else{ ans = ans + 2; if(X!=0){ if(X==0){ ans++; } } } System.out.println(ans); } }