結果

問題 No.46 はじめのn歩
ユーザー matsuyoshi30matsuyoshi30
提出日時 2015-12-29 01:58:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-09-19 08:16:30
合計ジャッジ時間 3,577 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,528 KB
testcase_01 AC 102 ms
52,744 KB
testcase_02 AC 112 ms
54,156 KB
testcase_03 AC 117 ms
53,956 KB
testcase_04 AC 103 ms
52,880 KB
testcase_05 AC 112 ms
53,604 KB
testcase_06 AC 111 ms
53,908 KB
testcase_07 AC 113 ms
54,076 KB
testcase_08 AC 113 ms
53,748 KB
testcase_09 AC 125 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str1 = in.next();
        String str2 = in.next();
        int n1 = Integer.parseInt(str1);
        int n2 = Integer.parseInt(str2);
        if(n2 % n1 == 0) {
            System.out.println(n2 / n1);
        } else {
            System.out.println(n2 / n1 + 1);
        }
    }
}
0