結果

問題 No.46 はじめのn歩
ユーザー rabirabi
提出日時 2019-06-24 11:37:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 804 bytes
コンパイル時間 2,873 ms
コンパイル使用メモリ 77,448 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-06-10 22:33:27
合計ジャッジ時間 4,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,376 KB
testcase_01 AC 96 ms
40,192 KB
testcase_02 AC 94 ms
40,284 KB
testcase_03 AC 106 ms
41,556 KB
testcase_04 AC 108 ms
41,208 KB
testcase_05 AC 100 ms
40,208 KB
testcase_06 AC 99 ms
40,292 KB
testcase_07 AC 98 ms
40,420 KB
testcase_08 AC 101 ms
39,960 KB
testcase_09 AC 113 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Tester2 {

	private static final int MAX = 1000000000;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String str = sc.nextLine();
		String[] ary = str.split(" ");
		int[] arr = strChg(ary);
		System.out.println(turnN(arr));
		


	}
	static int[] strChg(String[] ary) {
		int i = ary.length;
		int[] arr = new int[i];

		for(int j=0;j<ary.length;j++) {
			arr[j] = Integer.parseInt(ary[j]);
		}

		return arr;
	}
	static int turnN(int[] ary) {
		int num=0;
		if(1<=ary[0] && ary[0]<=MAX)
			if(1<=ary[1] && ary[1]<=MAX)
				num = chk(ary);
		return num;
	}
	static int chk(int[] ary) {
		int num;
		int a = ary[1]%ary[0];
		if(a != 0) {
			num = ary[1]/ary[0];
			num++;
		}else {
			num = ary[1]/ary[0];
		}
		return num;
	}

}
0