結果

問題 No.2088 数当てゲーム
ユーザー shojin_proshojin_pro
提出日時 2022-09-30 21:42:08
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 3,346 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 56,152 KB
最終ジャッジ日時 2024-12-22 22:54:19
合計ジャッジ時間 7,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,776 KB
testcase_01 AC 141 ms
41,564 KB
testcase_02 AC 141 ms
41,324 KB
testcase_03 AC 141 ms
41,252 KB
testcase_04 AC 150 ms
41,396 KB
testcase_05 AC 143 ms
41,516 KB
testcase_06 AC 146 ms
41,316 KB
testcase_07 WA -
testcase_08 AC 141 ms
41,324 KB
testcase_09 AC 144 ms
41,564 KB
testcase_10 AC 148 ms
41,560 KB
testcase_11 AC 143 ms
41,464 KB
testcase_12 AC 142 ms
41,720 KB
testcase_13 AC 140 ms
41,584 KB
testcase_14 AC 144 ms
41,420 KB
testcase_15 WA -
testcase_16 AC 136 ms
41,272 KB
testcase_17 AC 144 ms
41,732 KB
testcase_18 AC 141 ms
41,404 KB
testcase_19 AC 140 ms
41,772 KB
testcase_20 AC 140 ms
41,388 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