結果

問題 No.2194 兄弟の掛け引き
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 19:49:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 622 bytes
コンパイル時間 3,332 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-05-03 16:28:37
合計ジャッジ時間 6,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,136 KB
testcase_01 AC 132 ms
54,152 KB
testcase_02 AC 133 ms
54,188 KB
testcase_03 AC 133 ms
54,000 KB
testcase_04 AC 132 ms
54,136 KB
testcase_05 AC 132 ms
54,156 KB
testcase_06 AC 134 ms
54,100 KB
testcase_07 AC 131 ms
53,832 KB
testcase_08 AC 132 ms
54,116 KB
testcase_09 AC 131 ms
54,316 KB
testcase_10 AC 132 ms
54,504 KB
testcase_11 AC 133 ms
54,360 KB
testcase_12 AC 132 ms
53,972 KB
testcase_13 AC 134 ms
54,112 KB
testcase_14 AC 133 ms
53,964 KB
testcase_15 AC 132 ms
54,100 KB
testcase_16 AC 134 ms
53,968 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