結果

問題 No.46 はじめのn歩
ユーザー SuunnSuunn
提出日時 2018-11-20 05:29:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 237 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-06-06 21:05:47
合計ジャッジ時間 3,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,816 KB
testcase_01 AC 116 ms
54,008 KB
testcase_02 AC 100 ms
52,420 KB
testcase_03 AC 115 ms
53,648 KB
testcase_04 AC 116 ms
53,796 KB
testcase_05 AC 126 ms
54,060 KB
testcase_06 AC 106 ms
52,868 KB
testcase_07 AC 98 ms
52,324 KB
testcase_08 AC 119 ms
53,956 KB
testcase_09 AC 119 ms
53,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		System.out.println((b-1)/a+1);
	}
}
0