結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,496 KB
testcase_01 AC 138 ms
41,176 KB
testcase_02 AC 136 ms
41,428 KB
testcase_03 AC 140 ms
41,404 KB
testcase_04 AC 137 ms
41,464 KB
testcase_05 AC 141 ms
41,496 KB
testcase_06 AC 141 ms
41,660 KB
testcase_07 AC 141 ms
41,608 KB
testcase_08 AC 138 ms
41,544 KB
testcase_09 AC 136 ms
40,976 KB
testcase_10 AC 138 ms
41,364 KB
testcase_11 AC 142 ms
41,560 KB
testcase_12 AC 141 ms
41,372 KB
testcase_13 AC 138 ms
41,344 KB
testcase_14 AC 136 ms
41,432 KB
testcase_15 AC 138 ms
41,204 KB
testcase_16 AC 140 ms
41,428 KB
testcase_17 AC 142 ms
41,308 KB
testcase_18 AC 144 ms
41,432 KB
testcase_19 AC 137 ms
41,204 KB
testcase_20 WA -
testcase_21 AC 136 ms
41,228 KB
testcase_22 AC 141 ms
41,344 KB
testcase_23 AC 144 ms
41,352 KB
testcase_24 AC 140 ms
41,372 KB
testcase_25 AC 138 ms
41,432 KB
testcase_26 AC 138 ms
41,412 KB
testcase_27 AC 141 ms
41,264 KB
testcase_28 AC 139 ms
41,348 KB
testcase_29 AC 138 ms
41,528 KB
testcase_30 AC 138 ms
41,408 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=201;
        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