結果

問題 No.338 アンケート機能
ユーザー YamaKasaYamaKasa
提出日時 2018-09-16 17:08:00
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

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