結果

問題 No.338 アンケート機能
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 20:26:10
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-11-28 19:45:17
合計ジャッジ時間 8,096 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,044 KB
testcase_01 AC 133 ms
54,220 KB
testcase_02 AC 135 ms
54,172 KB
testcase_03 AC 136 ms
54,100 KB
testcase_04 AC 137 ms
54,204 KB
testcase_05 AC 134 ms
54,424 KB
testcase_06 AC 121 ms
52,904 KB
testcase_07 AC 135 ms
54,020 KB
testcase_08 AC 136 ms
54,152 KB
testcase_09 AC 136 ms
54,312 KB
testcase_10 AC 134 ms
54,404 KB
testcase_11 AC 137 ms
54,264 KB
testcase_12 AC 134 ms
54,244 KB
testcase_13 AC 134 ms
54,124 KB
testcase_14 AC 135 ms
53,964 KB
testcase_15 AC 137 ms
54,180 KB
testcase_16 AC 136 ms
54,200 KB
testcase_17 AC 136 ms
54,144 KB
testcase_18 AC 136 ms
53,996 KB
testcase_19 AC 122 ms
52,980 KB
testcase_20 WA -
testcase_21 AC 136 ms
54,028 KB
testcase_22 AC 136 ms
54,316 KB
testcase_23 AC 135 ms
54,388 KB
testcase_24 AC 137 ms
54,076 KB
testcase_25 AC 136 ms
54,408 KB
testcase_26 AC 135 ms
54,160 KB
testcase_27 AC 137 ms
54,376 KB
testcase_28 AC 138 ms
54,476 KB
testcase_29 AC 132 ms
54,316 KB
testcase_30 AC 138 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int A = sc.nextInt();
        int B = sc.nextInt();
        int up=200;
        int min = Integer.MAX_VALUE;
        for(int i=0; i<up; i++){
            for(int j=0; j<up; j++){
                int x = (int)Math.round(i/(double)(i+j)*100);
                int y = (int)Math.round(j/(double)(i+j)*100);
                if(x==A && y==B){
                    min=Math.min(min,i+j);
                }
            }
        }
        System.out.println(min);
        
    }
}
0