結果

問題 No.338 アンケート機能
ユーザー htensaihtensai
提出日時 2019-12-18 11:41:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 50,448 KB
最終ジャッジ日時 2024-07-06 04:01:08
合計ジャッジ時間 4,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,372 KB
testcase_01 AC 50 ms
36,660 KB
testcase_02 AC 50 ms
36,700 KB
testcase_03 AC 51 ms
36,368 KB
testcase_04 AC 50 ms
36,776 KB
testcase_05 WA -
testcase_06 AC 50 ms
36,832 KB
testcase_07 WA -
testcase_08 AC 48 ms
36,816 KB
testcase_09 WA -
testcase_10 AC 50 ms
36,940 KB
testcase_11 AC 50 ms
36,708 KB
testcase_12 AC 49 ms
36,768 KB
testcase_13 AC 49 ms
36,512 KB
testcase_14 AC 51 ms
36,832 KB
testcase_15 AC 50 ms
36,936 KB
testcase_16 AC 50 ms
36,840 KB
testcase_17 AC 50 ms
36,776 KB
testcase_18 AC 51 ms
36,556 KB
testcase_19 AC 50 ms
36,844 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 48 ms
36,848 KB
testcase_24 AC 49 ms
36,776 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 49 ms
36,840 KB
testcase_29 AC 50 ms
36,368 KB
testcase_30 AC 49 ms
36,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int a = Integer.parseInt(first[0]);
        int b = Integer.parseInt(first[1]);
        int min = Integer.MAX_VALUE;
        for (int i = 0; i <= 100; i++) {
            for (int j = 0; j <= 100; j++) {
                if (i == 0 && j == 0) {
                    continue;
                }
                if ((100 * i + (i + j) / 2) / (i + j) == a && (100 * j + (i + j) / 2) / (i + j) == b) {
                    min = Math.min(min, i + j);
                }
            }
        }
        System.out.println(min);
    }
}
0