結果
問題 | No.46 はじめのn歩 |
ユーザー | koukonko |
提出日時 | 2015-12-07 16:36:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 831 ms / 5,000 ms |
コード長 | 581 bytes |
コンパイル時間 | 2,262 ms |
コンパイル使用メモリ | 74,348 KB |
実行使用メモリ | 37,576 KB |
最終ジャッジ日時 | 2024-09-14 18:22:23 |
合計ジャッジ時間 | 4,505 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
36,892 KB |
testcase_01 | AC | 52 ms
36,356 KB |
testcase_02 | AC | 52 ms
36,252 KB |
testcase_03 | AC | 54 ms
36,256 KB |
testcase_04 | AC | 53 ms
36,388 KB |
testcase_05 | AC | 52 ms
36,948 KB |
testcase_06 | AC | 51 ms
36,832 KB |
testcase_07 | AC | 52 ms
36,892 KB |
testcase_08 | AC | 831 ms
37,576 KB |
testcase_09 | AC | 53 ms
36,940 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { BufferedReader buff = new BufferedReader(new InputStreamReader(System.in)); try { String[] box = buff.readLine().split(" "); int[] num = new int[2]; for(int i = 0; i < 2; ++i){ num[i] = Integer.parseInt(box[i]); } int ans = 0; while(num[0] < num[1]){ num[1] -= num[0]; ++ans; } System.out.println(++ans); } catch (NumberFormatException e) { } catch (IOException e) { } } }