結果
問題 | No.46 はじめのn歩 |
ユーザー | natume_shiki |
提出日時 | 2018-08-29 04:13:07 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 46 ms / 5,000 ms |
コード長 | 520 bytes |
コンパイル時間 | 2,857 ms |
コンパイル使用メモリ | 73,436 KB |
実行使用メモリ | 36,936 KB |
最終ジャッジ日時 | 2024-07-19 06:32:27 |
合計ジャッジ時間 | 3,794 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
36,700 KB |
testcase_01 | AC | 45 ms
36,776 KB |
testcase_02 | AC | 43 ms
36,636 KB |
testcase_03 | AC | 43 ms
36,632 KB |
testcase_04 | AC | 46 ms
36,648 KB |
testcase_05 | AC | 46 ms
36,788 KB |
testcase_06 | AC | 43 ms
36,916 KB |
testcase_07 | AC | 43 ms
36,808 KB |
testcase_08 | AC | 44 ms
36,936 KB |
testcase_09 | AC | 45 ms
36,772 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){} } }