結果

問題 No.338 アンケート機能
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 22:09:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 3,054 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-11-08 03:00:58
合計ジャッジ時間 7,193 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,164 KB
testcase_01 AC 131 ms
41,296 KB
testcase_02 AC 134 ms
40,896 KB
testcase_03 AC 121 ms
40,060 KB
testcase_04 AC 127 ms
41,176 KB
testcase_05 AC 121 ms
40,232 KB
testcase_06 AC 136 ms
41,000 KB
testcase_07 AC 132 ms
41,084 KB
testcase_08 AC 130 ms
41,172 KB
testcase_09 AC 132 ms
41,132 KB
testcase_10 AC 133 ms
41,292 KB
testcase_11 AC 119 ms
39,904 KB
testcase_12 AC 129 ms
40,944 KB
testcase_13 AC 132 ms
41,076 KB
testcase_14 AC 131 ms
41,296 KB
testcase_15 AC 130 ms
41,264 KB
testcase_16 AC 129 ms
41,044 KB
testcase_17 AC 131 ms
41,128 KB
testcase_18 AC 130 ms
40,928 KB
testcase_19 AC 131 ms
41,388 KB
testcase_20 AC 135 ms
40,932 KB
testcase_21 AC 131 ms
40,972 KB
testcase_22 AC 133 ms
40,884 KB
testcase_23 AC 120 ms
39,888 KB
testcase_24 AC 129 ms
41,188 KB
testcase_25 AC 131 ms
39,656 KB
testcase_26 AC 121 ms
39,936 KB
testcase_27 AC 135 ms
40,948 KB
testcase_28 AC 131 ms
41,132 KB
testcase_29 AC 120 ms
39,988 KB
testcase_30 AC 133 ms
41,244 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();
		int MAX = Integer.MAX_VALUE;
		for(int i = 0;i < MAX ; i++) {
			for(int j = 0; i + j < MAX; j++) {
				if(i + j == 0) continue;
				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