結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,232 KB
testcase_01 AC 119 ms
40,456 KB
testcase_02 AC 133 ms
41,576 KB
testcase_03 AC 132 ms
41,260 KB
testcase_04 AC 130 ms
41,084 KB
testcase_05 AC 131 ms
41,316 KB
testcase_06 AC 131 ms
41,324 KB
testcase_07 AC 117 ms
40,356 KB
testcase_08 AC 120 ms
40,408 KB
testcase_09 AC 142 ms
41,472 KB
testcase_10 AC 133 ms
41,428 KB
testcase_11 AC 131 ms
41,264 KB
testcase_12 AC 118 ms
40,416 KB
testcase_13 AC 129 ms
41,104 KB
testcase_14 AC 129 ms
41,484 KB
testcase_15 AC 117 ms
39,960 KB
testcase_16 AC 130 ms
41,488 KB
testcase_17 AC 132 ms
41,268 KB
testcase_18 AC 134 ms
41,444 KB
testcase_19 AC 130 ms
41,380 KB
testcase_20 WA -
testcase_21 AC 125 ms
41,368 KB
testcase_22 AC 122 ms
40,964 KB
testcase_23 AC 132 ms
41,368 KB
testcase_24 AC 140 ms
41,240 KB
testcase_25 AC 130 ms
41,204 KB
testcase_26 AC 130 ms
41,500 KB
testcase_27 AC 127 ms
41,280 KB
testcase_28 AC 120 ms
40,456 KB
testcase_29 AC 134 ms
41,492 KB
testcase_30 AC 134 ms
41,276 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