結果

問題 No.46 はじめのn歩
ユーザー kazapyon27kazapyon27
提出日時 2017-05-02 22:05:49
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 3,500 ms
コンパイル使用メモリ 77,076 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-09-14 04:47:46
合計ジャッジ時間 5,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,024 KB
testcase_01 AC 127 ms
41,172 KB
testcase_02 AC 128 ms
41,360 KB
testcase_03 AC 115 ms
40,224 KB
testcase_04 AC 123 ms
39,904 KB
testcase_05 AC 130 ms
41,328 KB
testcase_06 AC 131 ms
41,308 KB
testcase_07 AC 129 ms
41,256 KB
testcase_08 AC 115 ms
39,804 KB
testcase_09 AC 130 ms
41,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class No46 {
	public static void main(String[] args) {
		int speed,distance,time=0;
		try(Scanner input =new Scanner(System.in)){
			speed = input.nextInt();
			distance =input.nextInt();
			time=distance/speed;
			if(distance%speed!=0){
				System.out.println(time+1);				
			}else{
				System.out.println(time);
			}

		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0