結果

問題 No.2088 数当てゲーム
ユーザー viral8viral8
提出日時 2022-10-01 09:32:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 73,812 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-06-06 03:08:58
合計ジャッジ時間 6,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,860 KB
testcase_01 AC 106 ms
40,088 KB
testcase_02 AC 126 ms
41,324 KB
testcase_03 AC 109 ms
40,188 KB
testcase_04 AC 122 ms
41,208 KB
testcase_05 AC 122 ms
40,980 KB
testcase_06 AC 110 ms
39,748 KB
testcase_07 AC 115 ms
41,040 KB
testcase_08 AC 108 ms
40,132 KB
testcase_09 AC 117 ms
40,996 KB
testcase_10 AC 120 ms
41,384 KB
testcase_11 AC 121 ms
41,196 KB
testcase_12 AC 116 ms
40,740 KB
testcase_13 AC 115 ms
41,172 KB
testcase_14 AC 123 ms
40,876 KB
testcase_15 AC 110 ms
40,260 KB
testcase_16 AC 116 ms
41,032 KB
testcase_17 AC 108 ms
40,012 KB
testcase_18 AC 125 ms
41,140 KB
testcase_19 AC 121 ms
40,988 KB
testcase_20 AC 122 ms
41,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        long A = sc.nextLong();
        long B = sc.nextLong();
        if(A==1)
            System.out.println(0);
        else
            System.out.println(B/(1-A));
    }
}
0