結果
問題 | No.46 はじめのn歩 |
ユーザー | natume_shiki |
提出日時 | 2018-08-29 04:13:42 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 50 ms / 5,000 ms |
コード長 | 520 bytes |
コンパイル時間 | 2,809 ms |
コンパイル使用メモリ | 73,612 KB |
実行使用メモリ | 36,832 KB |
最終ジャッジ日時 | 2024-07-19 06:32:32 |
合計ジャッジ時間 | 3,817 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
36,816 KB |
testcase_01 | AC | 50 ms
36,704 KB |
testcase_02 | AC | 49 ms
36,776 KB |
testcase_03 | AC | 49 ms
36,712 KB |
testcase_04 | AC | 47 ms
36,520 KB |
testcase_05 | AC | 48 ms
36,620 KB |
testcase_06 | AC | 46 ms
36,508 KB |
testcase_07 | AC | 48 ms
36,488 KB |
testcase_08 | AC | 49 ms
36,832 KB |
testcase_09 | AC | 50 ms
36,728 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){} } }