結果

問題 No.338 アンケート機能
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 20:26:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 3,072 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-05-06 13:07:06
合計ジャッジ時間 8,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,484 KB
testcase_01 AC 131 ms
41,384 KB
testcase_02 AC 118 ms
40,480 KB
testcase_03 AC 132 ms
41,640 KB
testcase_04 AC 136 ms
41,524 KB
testcase_05 AC 135 ms
41,592 KB
testcase_06 AC 133 ms
41,324 KB
testcase_07 AC 133 ms
41,068 KB
testcase_08 AC 137 ms
41,052 KB
testcase_09 AC 133 ms
41,308 KB
testcase_10 AC 130 ms
41,272 KB
testcase_11 AC 133 ms
41,328 KB
testcase_12 AC 131 ms
41,152 KB
testcase_13 AC 133 ms
41,188 KB
testcase_14 AC 133 ms
41,144 KB
testcase_15 AC 136 ms
41,300 KB
testcase_16 AC 133 ms
41,128 KB
testcase_17 AC 135 ms
41,400 KB
testcase_18 AC 134 ms
41,412 KB
testcase_19 AC 132 ms
41,180 KB
testcase_20 WA -
testcase_21 AC 130 ms
41,344 KB
testcase_22 AC 131 ms
41,252 KB
testcase_23 AC 120 ms
40,208 KB
testcase_24 AC 120 ms
39,956 KB
testcase_25 AC 133 ms
41,436 KB
testcase_26 AC 119 ms
40,456 KB
testcase_27 AC 132 ms
41,644 KB
testcase_28 AC 133 ms
41,564 KB
testcase_29 AC 135 ms
41,252 KB
testcase_30 AC 132 ms
40,948 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