結果

問題 No.46 はじめのn歩
ユーザー k_kadorak_kadora
提出日時 2015-05-20 03:28:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 246 bytes
コンパイル時間 3,077 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-06 05:46:53
合計ジャッジ時間 5,091 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
54,016 KB
testcase_01 AC 106 ms
53,436 KB
testcase_02 AC 113 ms
54,276 KB
testcase_03 AC 115 ms
54,400 KB
testcase_04 AC 110 ms
54,280 KB
testcase_05 AC 108 ms
53,876 KB
testcase_06 AC 105 ms
53,840 KB
testcase_07 AC 106 ms
53,944 KB
testcase_08 AC 98 ms
53,000 KB
testcase_09 AC 108 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Firstn{
	public static void main(String[] arg){
		int a,b,res;
		Scanner sc = new Scanner(System.in);
		a = sc.nextInt();
		b = sc.nextInt();
		res = b/a;
		if(b - a * res >0)res++;
		System.out.println(res);
	}
}
0