結果

問題 No.46 はじめのn歩
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 05:09:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 734 bytes
コンパイル時間 3,633 ms
コンパイル使用メモリ 76,396 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-07-04 01:34:21
合計ジャッジ時間 5,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,304 KB
testcase_01 AC 108 ms
41,192 KB
testcase_02 AC 111 ms
41,320 KB
testcase_03 AC 105 ms
40,284 KB
testcase_04 AC 123 ms
41,400 KB
testcase_05 AC 123 ms
41,748 KB
testcase_06 AC 127 ms
41,548 KB
testcase_07 AC 117 ms
41,308 KB
testcase_08 AC 148 ms
41,124 KB
testcase_09 AC 156 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.46 はじめのn歩

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No46 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int a = sc.nextInt();
        int b = sc.nextInt();
        out.println((b/a+(b%a==0?0:1)));
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0