結果

問題 No.2088 数当てゲーム
ユーザー shojin_proshojin_pro
提出日時 2022-09-30 21:47:39
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 583 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-12-22 23:15:43
合計ジャッジ時間 6,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,268 KB
testcase_01 AC 136 ms
54,048 KB
testcase_02 AC 125 ms
54,240 KB
testcase_03 AC 135 ms
54,212 KB
testcase_04 AC 134 ms
54,008 KB
testcase_05 AC 132 ms
53,924 KB
testcase_06 AC 135 ms
53,700 KB
testcase_07 WA -
testcase_08 AC 136 ms
54,232 KB
testcase_09 AC 136 ms
54,188 KB
testcase_10 AC 133 ms
54,036 KB
testcase_11 AC 120 ms
52,924 KB
testcase_12 AC 139 ms
53,860 KB
testcase_13 AC 135 ms
53,840 KB
testcase_14 AC 132 ms
54,188 KB
testcase_15 WA -
testcase_16 AC 133 ms
54,036 KB
testcase_17 AC 136 ms
54,012 KB
testcase_18 AC 137 ms
54,144 KB
testcase_19 AC 135 ms
54,044 KB
testcase_20 AC 133 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        long A = sc.nextLong();
        long B = sc.nextLong();
        if(A == 0){
            System.out.println(B);   
        }else if(B == 0){
            System.out.println(0);   
        }else if(Math.abs(B) % (Math.abs(A)-1) == 0){
            if(A < 0){
                A = -A;
                B = -B;
            }
            System.out.println(-B/(A-1));
        }else{
            System.out.println(0);
        }
    }
}
0