結果

問題 No.388 階段 (1)
ユーザー natume_shikinatume_shiki
提出日時 2018-09-30 12:25:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 3,581 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 37,136 KB
最終ジャッジ日時 2024-10-12 09:00:59
合計ジャッジ時間 4,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,128 KB
testcase_01 AC 52 ms
37,096 KB
testcase_02 AC 52 ms
37,136 KB
testcase_03 AC 51 ms
36,888 KB
testcase_04 AC 50 ms
36,980 KB
testcase_05 AC 52 ms
36,536 KB
testcase_06 AC 52 ms
36,672 KB
testcase_07 AC 51 ms
37,028 KB
testcase_08 AC 51 ms
36,880 KB
testcase_09 AC 50 ms
37,028 KB
testcase_10 AC 50 ms
37,120 KB
testcase_11 AC 50 ms
36,864 KB
testcase_12 AC 52 ms
36,788 KB
testcase_13 AC 52 ms
37,032 KB
testcase_14 AC 51 ms
37,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
public class No_388{
	public static void main(String[] args){
		BufferedReader br = null;
		try{
			br = new BufferedReader(new InputStreamReader(System.in));
			String s = br.readLine();
			String[] sa = s.split(" ");
			int[] saNum = new int[sa.length];
			for(int i = 0; i < saNum.length; i++){
				saNum[i] = Integer.parseInt(sa[i]);
			}
			System.out.println(saNum[0] / saNum[1] + 1);
		}catch(IOException e){
		}finally{
			try{
				if(br != null)br.close();
			}catch(IOException e){}
		}
	}
}
0