結果

問題 No.2088 数当てゲーム
ユーザー shojin_proshojin_pro
提出日時 2022-09-30 21:47:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 583 bytes
コンパイル時間 2,808 ms
コンパイル使用メモリ 74,944 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-06-02 05:25:20
合計ジャッジ時間 5,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,232 KB
testcase_01 AC 118 ms
40,116 KB
testcase_02 AC 117 ms
41,484 KB
testcase_03 AC 105 ms
40,008 KB
testcase_04 AC 119 ms
41,108 KB
testcase_05 AC 120 ms
41,244 KB
testcase_06 AC 108 ms
39,860 KB
testcase_07 WA -
testcase_08 AC 110 ms
40,144 KB
testcase_09 AC 108 ms
39,908 KB
testcase_10 AC 119 ms
41,156 KB
testcase_11 AC 112 ms
39,916 KB
testcase_12 AC 114 ms
41,388 KB
testcase_13 AC 116 ms
41,264 KB
testcase_14 AC 104 ms
40,068 KB
testcase_15 WA -
testcase_16 AC 115 ms
41,288 KB
testcase_17 AC 123 ms
41,280 KB
testcase_18 AC 120 ms
40,236 KB
testcase_19 AC 112 ms
39,916 KB
testcase_20 AC 120 ms
41,108 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