結果

問題 No.338 アンケート機能
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 21:10:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,236 bytes
コンパイル時間 3,917 ms
コンパイル使用メモリ 79,008 KB
実行使用メモリ 46,684 KB
最終ジャッジ日時 2024-11-28 19:59:32
合計ジャッジ時間 10,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 236 ms
45,736 KB
testcase_01 AC 241 ms
46,128 KB
testcase_02 AC 235 ms
45,708 KB
testcase_03 AC 238 ms
45,760 KB
testcase_04 AC 120 ms
41,356 KB
testcase_05 AC 238 ms
46,252 KB
testcase_06 AC 132 ms
41,400 KB
testcase_07 AC 236 ms
45,964 KB
testcase_08 AC 239 ms
46,344 KB
testcase_09 AC 226 ms
45,768 KB
testcase_10 AC 237 ms
46,040 KB
testcase_11 AC 236 ms
45,848 KB
testcase_12 AC 242 ms
46,040 KB
testcase_13 AC 230 ms
45,876 KB
testcase_14 AC 234 ms
46,096 KB
testcase_15 AC 228 ms
45,968 KB
testcase_16 AC 232 ms
46,684 KB
testcase_17 AC 238 ms
45,952 KB
testcase_18 AC 226 ms
45,936 KB
testcase_19 AC 224 ms
45,768 KB
testcase_20 AC 229 ms
46,336 KB
testcase_21 AC 226 ms
46,236 KB
testcase_22 AC 225 ms
46,336 KB
testcase_23 AC 237 ms
45,552 KB
testcase_24 AC 226 ms
45,840 KB
testcase_25 AC 230 ms
46,336 KB
testcase_26 AC 238 ms
46,088 KB
testcase_27 AC 237 ms
46,196 KB
testcase_28 AC 238 ms
46,040 KB
testcase_29 AC 240 ms
45,800 KB
testcase_30 AC 228 ms
46,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int A = sc.nextInt();
        int B = sc.nextInt();
        int min = Integer.MAX_VALUE;
        if(A==0||B==0){
            min=1;
        }else{
            int up=201;
            for(int i=1; i<up; i++){
                for(int j=1; j<up; j++){
                    BigDecimal l = new BigDecimal(i);
                    BigDecimal m = new BigDecimal(j);
                    BigDecimal n = new BigDecimal("100");
                    BigDecimal sum = l.add(m);
                    l=l.multiply(n);
                    m=m.multiply(n);
                    BigDecimal o = l.divide(sum, 0, BigDecimal.ROUND_HALF_UP);
                    BigDecimal p = m.divide(sum, 0, BigDecimal.ROUND_HALF_UP);
                    String q=o.toPlainString();
                    String r=p.toPlainString();
                    int x = Integer.parseInt(q);
                    int y = Integer.parseInt(r);
                    if(x==A && y==B){
                        min=Math.min(min,i+j);
                    }
                }
            }
        }
        System.out.println(min);
    }
}
0