結果

問題 No.338 アンケート機能
ユーザー 37zigen37zigen
提出日時 2016-04-11 20:37:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 905 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-11-08 03:07:45
合計ジャッジ時間 7,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,140 KB
testcase_01 AC 134 ms
41,012 KB
testcase_02 AC 132 ms
41,128 KB
testcase_03 AC 133 ms
40,936 KB
testcase_04 AC 134 ms
41,332 KB
testcase_05 AC 137 ms
41,116 KB
testcase_06 AC 136 ms
41,208 KB
testcase_07 AC 131 ms
40,908 KB
testcase_08 AC 135 ms
41,088 KB
testcase_09 AC 131 ms
39,708 KB
testcase_10 AC 134 ms
41,336 KB
testcase_11 AC 133 ms
41,024 KB
testcase_12 AC 134 ms
41,248 KB
testcase_13 AC 134 ms
41,200 KB
testcase_14 AC 119 ms
39,788 KB
testcase_15 AC 132 ms
41,148 KB
testcase_16 AC 137 ms
41,088 KB
testcase_17 AC 135 ms
41,088 KB
testcase_18 AC 136 ms
41,232 KB
testcase_19 AC 133 ms
40,940 KB
testcase_20 AC 134 ms
40,812 KB
testcase_21 AC 125 ms
40,192 KB
testcase_22 AC 134 ms
40,988 KB
testcase_23 AC 134 ms
41,120 KB
testcase_24 AC 134 ms
41,216 KB
testcase_25 AC 118 ms
39,900 KB
testcase_26 AC 133 ms
40,908 KB
testcase_27 AC 127 ms
40,296 KB
testcase_28 AC 133 ms
40,928 KB
testcase_29 AC 136 ms
41,136 KB
testcase_30 AC 134 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int A=sc.nextInt();
		int B=sc.nextInt();
		
		//A=100a/(a+b)(小数点は四捨五入)
		//B=100b/(a+b)
		//a+bを最小化
		//Yesと答えた人がAパーセント
		//Noと答えた人がBパーセント
		//
		//A+B=100のとき
		//a=A,b=Bとすると、
		//成り立つので上界は100
		//A+B=101のとき
		//四捨五入前は
		//AはA-0.5、BはB-0.5となっている。
		//このとき、a=2A-1,b=2B-1とすると、
		//なりたつ
		//よって、上界は200
		//
		
		for(int i=1;i<=200;i++){
			for(int j=0;j<=i;j++){
				double a=j;
				double b=i-j;
				if(A==(int)(100*a/(a+b)+0.5)&&B==(int)(100*b/(a+b)+0.5)){
					System.out.println((int)(a+b));
					return;
				}
			}
		}
		
	}
}
0