結果

問題 No.46 はじめのn歩
ユーザー ginmakuraginmakura
提出日時 2017-10-19 20:46:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-11-21 07:39:19
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,112 KB
testcase_01 AC 122 ms
54,104 KB
testcase_02 AC 123 ms
54,008 KB
testcase_03 AC 119 ms
54,020 KB
testcase_04 AC 121 ms
54,020 KB
testcase_05 AC 119 ms
54,172 KB
testcase_06 AC 119 ms
54,152 KB
testcase_07 AC 119 ms
54,172 KB
testcase_08 AC 122 ms
54,252 KB
testcase_09 AC 124 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.lang.Math;

class N46 {
	public static void main(String[] args) throws Exception{
		try (Scanner sc1 = new Scanner(System.in)) {
		
			int[] array = new int[2];
			
			array[0] = Integer.parseInt(sc1.next());
			array[1] = Integer.parseInt(sc1.next());
			
			System.out.println((int)Math.ceil((double)array[1] / (double)array[0]));
		}
	}
}
0