結果

問題 No.338 アンケート機能
ユーザー jp_stejp_ste
提出日時 2016-02-16 22:21:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-09-22 07:19:22
合計ジャッジ時間 7,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,884 KB
testcase_01 AC 134 ms
53,872 KB
testcase_02 AC 131 ms
53,988 KB
testcase_03 AC 133 ms
54,292 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 128 ms
54,212 KB
testcase_09 WA -
testcase_10 AC 134 ms
54,300 KB
testcase_11 AC 130 ms
54,316 KB
testcase_12 AC 131 ms
54,212 KB
testcase_13 AC 128 ms
54,100 KB
testcase_14 AC 131 ms
54,236 KB
testcase_15 AC 121 ms
53,120 KB
testcase_16 AC 135 ms
54,288 KB
testcase_17 AC 119 ms
52,968 KB
testcase_18 AC 116 ms
52,968 KB
testcase_19 AC 131 ms
53,992 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 128 ms
53,856 KB
testcase_24 AC 131 ms
54,132 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 132 ms
53,988 KB
testcase_29 AC 118 ms
52,836 KB
testcase_30 AC 140 ms
54,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int A = scan.nextInt();
		int B = scan.nextInt();
		int ans = Integer.MAX_VALUE;
		
		for(int a=1; a<=100; a++) {
			for(int b=1; b<=100; b++) {
				int tmpA =  Math.round((100f * a / (a+b)));
				int tmpB =  Math.round((100f * b / (a+b)));
				if(A == tmpA && B == tmpB) {
					ans = Math.min(ans, a+b);
				}
			}
		}
		System.out.println(ans);
	}
}
0