結果
問題 | No.46 はじめのn歩 |
ユーザー | ぬるぬる |
提出日時 | 2016-05-14 20:05:53 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 61 ms / 5,000 ms |
コード長 | 817 bytes |
コンパイル時間 | 3,280 ms |
コンパイル使用メモリ | 74,612 KB |
実行使用メモリ | 50,624 KB |
最終ジャッジ日時 | 2024-10-06 02:48:12 |
合計ジャッジ時間 | 4,253 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,524 KB |
testcase_01 | AC | 56 ms
50,460 KB |
testcase_02 | AC | 55 ms
50,544 KB |
testcase_03 | AC | 58 ms
50,624 KB |
testcase_04 | AC | 59 ms
50,460 KB |
testcase_05 | AC | 61 ms
50,528 KB |
testcase_06 | AC | 61 ms
50,476 KB |
testcase_07 | AC | 60 ms
50,572 KB |
testcase_08 | AC | 59 ms
50,552 KB |
testcase_09 | AC | 61 ms
50,268 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Test { public static void main(String[] args) { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); try { String str = br.readLine(); String[] result1 = str.split("[\\s]+"); if (result1.length != 2){ System.out.println("引数エラー"); System.exit(-1); } int amari = Integer.parseInt(result1[1]) % Integer.parseInt(result1[0]); if ( amari == 0 ){ System.out.println( Integer.parseInt(result1[1]) / Integer.parseInt(result1[0])); }else{ System.out.println((Integer.parseInt(result1[1]) / Integer.parseInt(result1[0]))+1); } } catch (IOException e) { e.printStackTrace(); } } }