結果
問題 |
No.48 ロボットの操縦
|
ユーザー |
![]() |
提出日時 | 2016-05-14 23:12:34 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 132 ms / 5,000 ms |
コード長 | 644 bytes |
コンパイル時間 | 3,484 ms |
コンパイル使用メモリ | 75,156 KB |
実行使用メモリ | 41,692 KB |
最終ジャッジ日時 | 2024-11-21 18:39:52 |
合計ジャッジ時間 | 7,710 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
import java.util.Scanner; public class Main2 { public static void main(String[] args) { try (Scanner scan = new Scanner(System.in)) { int x = Integer.parseInt(scan.next()); int y = Integer.parseInt(scan.next()); int l = Integer.parseInt(scan.next()); int count = 0; if(y < 0) count+=2; else if(y >= 0 && x != 0) count++; count += (Math.abs(y)/l) + (Math.abs(y)%l>0? 1:0); count += (Math.abs(x)/l) + (Math.abs(x)%l>0? 1:0); System.out.println(count); } } }