結果

問題 No.338 アンケート機能
ユーザー GrenacheGrenache
提出日時 2016-02-15 21:08:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 3,600 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-11-08 03:02:22
合計ジャッジ時間 9,053 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,084 KB
testcase_01 AC 137 ms
41,204 KB
testcase_02 AC 138 ms
41,188 KB
testcase_03 AC 136 ms
41,220 KB
testcase_04 AC 124 ms
40,112 KB
testcase_05 AC 126 ms
40,020 KB
testcase_06 AC 139 ms
41,432 KB
testcase_07 AC 142 ms
41,180 KB
testcase_08 AC 140 ms
41,472 KB
testcase_09 AC 128 ms
40,300 KB
testcase_10 AC 141 ms
41,272 KB
testcase_11 AC 142 ms
41,512 KB
testcase_12 AC 142 ms
41,424 KB
testcase_13 AC 140 ms
41,532 KB
testcase_14 AC 141 ms
41,252 KB
testcase_15 AC 142 ms
41,384 KB
testcase_16 AC 140 ms
41,464 KB
testcase_17 AC 139 ms
41,392 KB
testcase_18 AC 139 ms
41,508 KB
testcase_19 AC 139 ms
41,332 KB
testcase_20 AC 137 ms
41,260 KB
testcase_21 AC 143 ms
41,160 KB
testcase_22 AC 140 ms
41,224 KB
testcase_23 AC 145 ms
41,344 KB
testcase_24 AC 141 ms
41,588 KB
testcase_25 AC 141 ms
40,996 KB
testcase_26 AC 134 ms
40,320 KB
testcase_27 AC 139 ms
41,336 KB
testcase_28 AC 127 ms
40,188 KB
testcase_29 AC 139 ms
41,456 KB
testcase_30 AC 139 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder338 {

    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;
        for (int i = 0; i <= 200; i++) {
            for (int j = 0; j <= 200; j++) {
            	int tmp = i + j;
            	if (tmp == 0) {
            		continue;
            	}

            	int tmpa = (int)Math.round((double)100 * i / tmp);
            	int tmpb = (int)Math.round((double)100 * j / tmp);

            	if (tmpa == a && tmpb == b) {
            		min = Math.min(min, tmp);
            	}
            }
        }

        System.out.println(min);

        sc.close();
    }
}
0