結果

問題 No.338 アンケート機能
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 22:08:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 664 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 83,640 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-09-21 19:56:02
合計ジャッジ時間 6,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,196 KB
testcase_01 AC 117 ms
41,144 KB
testcase_02 AC 133 ms
41,132 KB
testcase_03 AC 117 ms
41,152 KB
testcase_04 WA -
testcase_05 AC 120 ms
41,008 KB
testcase_06 AC 103 ms
39,772 KB
testcase_07 AC 105 ms
39,996 KB
testcase_08 AC 119 ms
41,064 KB
testcase_09 AC 107 ms
39,644 KB
testcase_10 AC 107 ms
39,984 KB
testcase_11 AC 106 ms
40,064 KB
testcase_12 AC 121 ms
40,828 KB
testcase_13 AC 126 ms
41,144 KB
testcase_14 AC 123 ms
41,012 KB
testcase_15 AC 122 ms
41,332 KB
testcase_16 AC 113 ms
40,732 KB
testcase_17 AC 119 ms
41,396 KB
testcase_18 AC 101 ms
39,948 KB
testcase_19 AC 114 ms
41,052 KB
testcase_20 AC 116 ms
41,060 KB
testcase_21 AC 121 ms
41,184 KB
testcase_22 AC 107 ms
39,776 KB
testcase_23 AC 118 ms
40,904 KB
testcase_24 AC 115 ms
41,060 KB
testcase_25 AC 123 ms
41,016 KB
testcase_26 AC 113 ms
39,992 KB
testcase_27 AC 115 ms
40,772 KB
testcase_28 AC 116 ms
40,768 KB
testcase_29 AC 110 ms
40,248 KB
testcase_30 AC 122 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		if(a == 0 && b == 0) {
			System.out.println(0);
			return;
		}
		int MAX = Integer.MAX_VALUE;
		for(int i = 1;i < MAX ; i++) {
			for(int j = 0; i + j < MAX; j++) {
				double Aa = 100 * i / (double)(i + j);
				double Bb = 100 * j / (double)(i + j);
				int A = (int)Aa;
				int B = (int)Bb; 
				
				if(Aa - A >= 0.5) A++;
				if(Bb - B >= 0.5) B++;
				if(A == a && B == b) MAX = i + j;
				if(A < a) break;
			}
		}
		System.out.println(MAX);
	}
}
0