結果

問題 No.338 アンケート機能
ユーザー YamaKasaYamaKasa
提出日時 2018-09-16 17:08:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-07-18 07:24:46
合計ジャッジ時間 6,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,036 KB
testcase_01 AC 105 ms
53,216 KB
testcase_02 AC 119 ms
53,960 KB
testcase_03 AC 106 ms
53,208 KB
testcase_04 AC 117 ms
54,384 KB
testcase_05 AC 107 ms
53,216 KB
testcase_06 AC 128 ms
54,344 KB
testcase_07 AC 118 ms
54,420 KB
testcase_08 AC 106 ms
53,056 KB
testcase_09 AC 116 ms
53,840 KB
testcase_10 AC 116 ms
54,236 KB
testcase_11 AC 106 ms
52,812 KB
testcase_12 AC 121 ms
54,296 KB
testcase_13 AC 105 ms
53,220 KB
testcase_14 AC 116 ms
53,996 KB
testcase_15 AC 118 ms
54,172 KB
testcase_16 AC 113 ms
53,240 KB
testcase_17 AC 119 ms
54,224 KB
testcase_18 AC 113 ms
54,256 KB
testcase_19 AC 120 ms
54,052 KB
testcase_20 AC 117 ms
53,980 KB
testcase_21 AC 120 ms
54,208 KB
testcase_22 AC 119 ms
54,160 KB
testcase_23 AC 121 ms
53,828 KB
testcase_24 AC 124 ms
53,828 KB
testcase_25 AC 122 ms
54,336 KB
testcase_26 AC 115 ms
54,184 KB
testcase_27 AC 113 ms
54,088 KB
testcase_28 AC 109 ms
53,120 KB
testcase_29 AC 118 ms
54,100 KB
testcase_30 AC 118 ms
54,376 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();
		scan.close();
		if(A < B) {
			int t = A;
			A = B;
			B = t;
		}
		int min = 200;
		for(int a = 1; a <= 100; a++) {
			for(int b = 0; b <= 100; b++) {
				double k1 = (double) 100 * a / (a + b);
				double k2 = (double) 100 * b / (a + b);
				int k3 = (int)Math.round(k1);
				int k4 = (int)Math.round(k2);
				if(k3 == A && k4 == B) {
					if(min > a + b) {
						min = a + b;
					}
				}
			}
		}
		System.out.println(min);
	}
}
0