結果
問題 | No.46 はじめのn歩 |
ユーザー | rabi |
提出日時 | 2019-06-24 11:35:09 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 112 ms / 5,000 ms |
コード長 | 818 bytes |
コンパイル時間 | 2,964 ms |
コンパイル使用メモリ | 77,856 KB |
実行使用メモリ | 41,360 KB |
最終ジャッジ日時 | 2024-06-10 22:26:55 |
合計ジャッジ時間 | 4,633 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 95 ms
40,056 KB |
testcase_01 | AC | 109 ms
41,360 KB |
testcase_02 | AC | 108 ms
41,356 KB |
testcase_03 | AC | 108 ms
41,120 KB |
testcase_04 | AC | 112 ms
41,100 KB |
testcase_05 | AC | 105 ms
41,068 KB |
testcase_06 | AC | 103 ms
40,848 KB |
testcase_07 | AC | 106 ms
41,344 KB |
testcase_08 | AC | 105 ms
41,300 KB |
testcase_09 | AC | 103 ms
41,204 KB |
ソースコード
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(); sc.close(); 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; } }