結果

問題 No.338 アンケート機能
ユーザー jp_stejp_ste
提出日時 2016-02-16 22:27:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 2,498 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-11-08 03:02:33
合計ジャッジ時間 7,771 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,468 KB
testcase_01 AC 141 ms
41,088 KB
testcase_02 AC 138 ms
41,120 KB
testcase_03 AC 139 ms
41,408 KB
testcase_04 AC 141 ms
41,800 KB
testcase_05 AC 138 ms
41,812 KB
testcase_06 AC 140 ms
41,556 KB
testcase_07 AC 128 ms
39,932 KB
testcase_08 AC 140 ms
41,396 KB
testcase_09 AC 141 ms
40,976 KB
testcase_10 AC 141 ms
41,420 KB
testcase_11 AC 138 ms
41,288 KB
testcase_12 AC 137 ms
41,256 KB
testcase_13 AC 143 ms
41,536 KB
testcase_14 AC 133 ms
41,236 KB
testcase_15 AC 136 ms
41,028 KB
testcase_16 AC 138 ms
41,328 KB
testcase_17 AC 140 ms
41,260 KB
testcase_18 AC 139 ms
41,160 KB
testcase_19 AC 128 ms
40,212 KB
testcase_20 AC 139 ms
41,184 KB
testcase_21 AC 140 ms
41,292 KB
testcase_22 AC 142 ms
41,240 KB
testcase_23 AC 140 ms
41,384 KB
testcase_24 AC 139 ms
41,380 KB
testcase_25 AC 126 ms
40,064 KB
testcase_26 AC 141 ms
41,164 KB
testcase_27 AC 141 ms
41,432 KB
testcase_28 AC 142 ms
41,372 KB
testcase_29 AC 143 ms
41,412 KB
testcase_30 AC 138 ms
41,240 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=0; a<=200; a++) {
			for(int b=0; b<=200; 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