結果

問題 No.338 アンケート機能
ユーザー ぴろずぴろず
提出日時 2016-01-29 22:28:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-11-08 02:46:53
合計ジャッジ時間 7,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,384 KB
testcase_01 AC 138 ms
41,424 KB
testcase_02 AC 143 ms
41,156 KB
testcase_03 AC 139 ms
41,504 KB
testcase_04 AC 134 ms
41,620 KB
testcase_05 AC 136 ms
41,400 KB
testcase_06 AC 136 ms
41,636 KB
testcase_07 AC 136 ms
41,252 KB
testcase_08 AC 134 ms
41,644 KB
testcase_09 AC 141 ms
41,296 KB
testcase_10 AC 140 ms
41,460 KB
testcase_11 AC 138 ms
41,264 KB
testcase_12 AC 137 ms
41,444 KB
testcase_13 AC 143 ms
41,504 KB
testcase_14 AC 137 ms
41,152 KB
testcase_15 AC 135 ms
41,704 KB
testcase_16 AC 140 ms
41,348 KB
testcase_17 AC 140 ms
41,240 KB
testcase_18 AC 137 ms
41,160 KB
testcase_19 AC 138 ms
41,164 KB
testcase_20 AC 139 ms
41,336 KB
testcase_21 AC 140 ms
41,464 KB
testcase_22 AC 138 ms
41,676 KB
testcase_23 AC 136 ms
41,632 KB
testcase_24 AC 138 ms
41,524 KB
testcase_25 AC 138 ms
41,600 KB
testcase_26 AC 141 ms
41,684 KB
testcase_27 AC 138 ms
41,720 KB
testcase_28 AC 135 ms
41,296 KB
testcase_29 AC 140 ms
41,528 KB
testcase_30 AC 138 ms
41,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no339;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int p = sc.nextInt();
		int q = sc.nextInt();
		for(int sum=1;;sum++) {
			for(int a=0;a<=sum;a++) {
				int b = sum - a;
				int p2 = divRound(100 * a, a + b);
				int q2 = divRound(100 * b, a + b);
				if (p == p2 && q == q2) {
					System.out.println(sum);
					return;
				}
			}
		}
	}
	
	public static int divRound(int a,int b) {
		return a / b + (a % b >= (b + 1) / 2 ? 1 : 0);
	}

}
0