結果

問題 No.338 アンケート機能
ユーザー tentententen
提出日時 2020-10-14 11:13:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,002 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 74,952 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-07-20 19:02:44
合計ジャッジ時間 7,808 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,228 KB
testcase_01 AC 140 ms
41,080 KB
testcase_02 AC 137 ms
40,960 KB
testcase_03 AC 138 ms
41,244 KB
testcase_04 AC 135 ms
41,068 KB
testcase_05 AC 141 ms
41,160 KB
testcase_06 AC 135 ms
41,260 KB
testcase_07 AC 137 ms
40,968 KB
testcase_08 AC 137 ms
41,112 KB
testcase_09 AC 137 ms
41,064 KB
testcase_10 AC 134 ms
41,444 KB
testcase_11 AC 137 ms
41,420 KB
testcase_12 AC 134 ms
41,260 KB
testcase_13 AC 135 ms
41,156 KB
testcase_14 AC 135 ms
41,032 KB
testcase_15 AC 135 ms
40,996 KB
testcase_16 AC 135 ms
40,840 KB
testcase_17 AC 131 ms
41,100 KB
testcase_18 AC 138 ms
41,032 KB
testcase_19 AC 137 ms
41,460 KB
testcase_20 AC 137 ms
41,140 KB
testcase_21 AC 137 ms
41,332 KB
testcase_22 AC 135 ms
41,116 KB
testcase_23 AC 135 ms
41,080 KB
testcase_24 AC 135 ms
41,048 KB
testcase_25 AC 135 ms
41,136 KB
testcase_26 AC 137 ms
41,020 KB
testcase_27 AC 139 ms
41,000 KB
testcase_28 AC 123 ms
39,980 KB
testcase_29 AC 138 ms
41,012 KB
testcase_30 AC 137 ms
40,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int a = sc.nextInt();
    	int b = sc.nextInt();
    	if (a == 0 && b == 0) {
    	    System.out.println(0);
    	}
    	int ansA = Integer.MAX_VALUE;
    	int ansB = Integer.MAX_VALUE;
    	for (int i = 0; i <= 200; i++) {
    	    for (int j = 0; j <= 200; j++) {
    	        if (i == 0 && j == 0) {
    	            continue;
    	        }
    	        int tmpA = 1000 * i / (i + j);
    	        if (tmpA % 10 >= 5) {
    	            tmpA += 10;
    	        }
    	        tmpA /= 10;
     	        int tmpB = 1000 * j / (i + j);
    	        if (tmpB % 10 >= 5) {
    	            tmpB += 10;
    	        }
    	        tmpB /= 10;
    	        if (tmpA == a && tmpB == b) {
    	            ansA = Math.min(ansA, i);
    	            ansB = Math.min(ansB, j);
    	            break;
    	        }
    	    }
    	}
    	System.out.println(ansA + ansB);
	}
}
0