結果

問題 No.46 はじめのn歩
ユーザー tts-k-kudotts-k-kudo
提出日時 2019-08-02 21:29:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 252 bytes
コンパイル時間 3,540 ms
コンパイル使用メモリ 73,672 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-07-05 08:17:27
合計ジャッジ時間 4,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,152 KB
testcase_01 AC 113 ms
41,288 KB
testcase_02 AC 109 ms
41,352 KB
testcase_03 AC 114 ms
41,360 KB
testcase_04 AC 114 ms
41,236 KB
testcase_05 AC 99 ms
41,488 KB
testcase_06 AC 111 ms
41,028 KB
testcase_07 AC 112 ms
40,132 KB
testcase_08 AC 113 ms
41,564 KB
testcase_09 AC 102 ms
41,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class FIRST_N_STEPS {
    public static void main (String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        System.out.println((b -1 + a) / a );
    }
}
0