結果

問題 No.2194 兄弟の掛け引き
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 19:49:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 1,000 ms
コード長 622 bytes
コンパイル時間 2,955 ms
コンパイル使用メモリ 75,156 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-11-24 18:55:06
合計ジャッジ時間 5,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,112 KB
testcase_01 AC 116 ms
54,128 KB
testcase_02 AC 117 ms
53,904 KB
testcase_03 AC 105 ms
52,984 KB
testcase_04 AC 104 ms
52,720 KB
testcase_05 AC 112 ms
53,968 KB
testcase_06 AC 117 ms
54,216 KB
testcase_07 AC 111 ms
52,840 KB
testcase_08 AC 104 ms
53,176 KB
testcase_09 AC 103 ms
52,976 KB
testcase_10 AC 116 ms
54,108 KB
testcase_11 AC 108 ms
52,732 KB
testcase_12 AC 110 ms
53,276 KB
testcase_13 AC 116 ms
54,256 KB
testcase_14 AC 106 ms
53,080 KB
testcase_15 AC 117 ms
53,880 KB
testcase_16 AC 113 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Brother_chase {
    public static void log(Object obj) {
        System.out.println(obj.toString());
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        int p = c;
        int q = c + b;
        boolean flag = false;
        if(p%a==0&&c-b<=0) {
            log(p/a);
            flag = true;
        }
        if(q%a==0) {
            log(q/a);
            flag = true;
        }
        if(!flag) {
            log(-1);
        }
    }
}
0