結果

問題 No.46 はじめのn歩
ユーザー 鹿鹿
提出日時 2021-04-07 00:01:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 559 bytes
コンパイル時間 3,351 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 37,088 KB
最終ジャッジ日時 2024-06-11 23:30:02
合計ジャッジ時間 4,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,796 KB
testcase_01 AC 57 ms
37,028 KB
testcase_02 AC 57 ms
36,988 KB
testcase_03 AC 58 ms
36,900 KB
testcase_04 AC 55 ms
36,672 KB
testcase_05 AC 54 ms
37,088 KB
testcase_06 AC 54 ms
36,980 KB
testcase_07 AC 53 ms
37,060 KB
testcase_08 AC 53 ms
36,532 KB
testcase_09 AC 55 ms
36,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class NWalk {
    public static void main(String[] args) throws IOException{
    	BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    	
    	String numString = new String(in.readLine());
    	
    	String[] array = numString.split(" ");
    	int num1 = Integer.parseInt(array[0]);
    	int num2 = Integer.parseInt(array[1]);
    	
    	int ans = (Math.round(num2 / num1));
    	if(num2%num1 == 0){
    		System.out.println(ans);
    	} else {
    		System.out.println(ans + 1);
    	}
    	
        
    }
}
0