結果

問題 No.46 はじめのn歩
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-08 21:44:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 224 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-09-25 11:08:45
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,332 KB
testcase_01 AC 127 ms
41,336 KB
testcase_02 AC 123 ms
41,444 KB
testcase_03 AC 123 ms
41,540 KB
testcase_04 AC 125 ms
41,452 KB
testcase_05 AC 124 ms
41,316 KB
testcase_06 AC 124 ms
41,352 KB
testcase_07 AC 125 ms
41,440 KB
testcase_08 AC 122 ms
41,284 KB
testcase_09 AC 125 ms
41,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int m = sc.nextInt();
		System.out.println(m%n==0?(m/n):(m/n+1));
	}
}
0