結果
問題 | No.46 はじめのn歩 |
ユーザー | nglkrianbrjf |
提出日時 | 2016-02-27 02:23:32 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 54 ms / 5,000 ms |
コード長 | 546 bytes |
コンパイル時間 | 3,376 ms |
コンパイル使用メモリ | 74,656 KB |
実行使用メモリ | 50,492 KB |
最終ジャッジ日時 | 2024-09-24 11:00:10 |
合計ジャッジ時間 | 4,509 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,492 KB |
testcase_01 | AC | 52 ms
50,364 KB |
testcase_02 | AC | 53 ms
50,300 KB |
testcase_03 | AC | 53 ms
50,440 KB |
testcase_04 | AC | 52 ms
50,200 KB |
testcase_05 | AC | 53 ms
50,248 KB |
testcase_06 | AC | 52 ms
50,364 KB |
testcase_07 | AC | 54 ms
50,380 KB |
testcase_08 | AC | 52 ms
50,320 KB |
testcase_09 | AC | 53 ms
50,160 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; public class Question46 { public static void main(String[] args) { int a, b; InputStreamReader isr = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(isr); try{ String buf = br.readLine(); String[] tmp = buf.split(" "); a = Integer.parseInt(tmp[0]); b = Integer.parseInt(tmp[1]); }catch(Exception e){ System.out.println(e); return; } int result = b / a; if((b % a) != 0) result ++; System.out.println(result); } }