結果
問題 | No.46 はじめのn歩 |
ユーザー | natume_shiki |
提出日時 | 2018-08-29 04:16:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 47 ms / 5,000 ms |
コード長 | 520 bytes |
コンパイル時間 | 2,889 ms |
コンパイル使用メモリ | 74,212 KB |
実行使用メモリ | 36,872 KB |
最終ジャッジ日時 | 2024-07-19 06:32:36 |
合計ジャッジ時間 | 3,692 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
36,368 KB |
testcase_01 | AC | 46 ms
36,872 KB |
testcase_02 | AC | 44 ms
36,644 KB |
testcase_03 | AC | 43 ms
36,444 KB |
testcase_04 | AC | 44 ms
36,820 KB |
testcase_05 | AC | 45 ms
36,772 KB |
testcase_06 | AC | 46 ms
36,448 KB |
testcase_07 | AC | 45 ms
36,520 KB |
testcase_08 | AC | 45 ms
36,728 KB |
testcase_09 | AC | 45 ms
36,444 KB |
ソースコード
import java.io.*; public class No_46{ public static void main(String args[]){ try{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String sNumber = br.readLine(); String[] sNum = sNumber.split(" "); int[] num = new int[sNum.length]; for(int i = 0; i < num.length; i++){ num[i] = Integer.parseInt(sNum[i]); } if(num[1] % num[0] == 0){ System.out.println(num[1] / num[0]); }else{ System.out.println(num[1] / num[0] + 1); } }catch(IOException e){} } }