結果

問題 No.338 アンケート機能
ユーザー htensaihtensai
提出日時 2019-12-18 11:46:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 2,011 ms
コンパイル使用メモリ 73,924 KB
実行使用メモリ 38,144 KB
最終ジャッジ日時 2024-07-06 04:09:28
合計ジャッジ時間 4,548 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
37,556 KB
testcase_01 AC 63 ms
38,012 KB
testcase_02 AC 63 ms
38,144 KB
testcase_03 AC 64 ms
37,788 KB
testcase_04 AC 63 ms
38,100 KB
testcase_05 AC 65 ms
37,700 KB
testcase_06 AC 65 ms
37,712 KB
testcase_07 AC 63 ms
37,972 KB
testcase_08 AC 63 ms
37,964 KB
testcase_09 AC 65 ms
37,764 KB
testcase_10 AC 66 ms
37,940 KB
testcase_11 AC 64 ms
37,792 KB
testcase_12 AC 62 ms
37,768 KB
testcase_13 AC 63 ms
37,572 KB
testcase_14 AC 63 ms
37,796 KB
testcase_15 AC 64 ms
38,024 KB
testcase_16 AC 76 ms
37,556 KB
testcase_17 AC 63 ms
37,816 KB
testcase_18 AC 64 ms
37,768 KB
testcase_19 AC 64 ms
37,932 KB
testcase_20 AC 65 ms
37,964 KB
testcase_21 AC 62 ms
38,116 KB
testcase_22 AC 65 ms
37,916 KB
testcase_23 AC 65 ms
37,992 KB
testcase_24 AC 65 ms
37,812 KB
testcase_25 AC 64 ms
37,964 KB
testcase_26 AC 64 ms
37,736 KB
testcase_27 AC 64 ms
37,552 KB
testcase_28 AC 65 ms
37,912 KB
testcase_29 AC 63 ms
38,040 KB
testcase_30 AC 63 ms
37,992 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 <= 1000; i++) {
            for (int j = 0; j <= 1000; j++) {
                if (i == 0 && j == 0) {
                    continue;
                }
                if (Math.round((100 * i) / (double)(i + j)) == a && Math.round((100 * j) / (double)(i + j)) == b) {
                    min = Math.min(min, i + j);
                }
            }
        }
        System.out.println(min);
    }
}
0