結果

問題 No.338 アンケート機能
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 21:10:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 1,236 bytes
コンパイル時間 2,699 ms
コンパイル使用メモリ 79,264 KB
実行使用メモリ 46,700 KB
最終ジャッジ日時 2024-05-06 13:16:47
合計ジャッジ時間 9,715 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
45,968 KB
testcase_01 AC 214 ms
45,908 KB
testcase_02 AC 213 ms
46,352 KB
testcase_03 AC 212 ms
46,400 KB
testcase_04 AC 111 ms
40,360 KB
testcase_05 AC 226 ms
46,248 KB
testcase_06 AC 118 ms
41,008 KB
testcase_07 AC 220 ms
46,468 KB
testcase_08 AC 201 ms
46,288 KB
testcase_09 AC 194 ms
46,072 KB
testcase_10 AC 220 ms
46,372 KB
testcase_11 AC 210 ms
46,460 KB
testcase_12 AC 210 ms
46,380 KB
testcase_13 AC 206 ms
46,060 KB
testcase_14 AC 213 ms
45,892 KB
testcase_15 AC 228 ms
46,376 KB
testcase_16 AC 220 ms
46,288 KB
testcase_17 AC 212 ms
46,524 KB
testcase_18 AC 201 ms
46,336 KB
testcase_19 AC 206 ms
46,320 KB
testcase_20 AC 213 ms
46,700 KB
testcase_21 AC 202 ms
46,200 KB
testcase_22 AC 210 ms
46,168 KB
testcase_23 AC 211 ms
46,224 KB
testcase_24 AC 207 ms
46,028 KB
testcase_25 AC 195 ms
46,324 KB
testcase_26 AC 202 ms
46,072 KB
testcase_27 AC 199 ms
46,044 KB
testcase_28 AC 211 ms
46,216 KB
testcase_29 AC 211 ms
46,252 KB
testcase_30 AC 198 ms
46,308 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