結果

問題 No.338 アンケート機能
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-24 06:53:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 4,259 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-11-08 03:14:27
合計ジャッジ時間 8,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,360 KB
testcase_01 AC 135 ms
41,324 KB
testcase_02 AC 137 ms
41,224 KB
testcase_03 AC 139 ms
41,196 KB
testcase_04 AC 133 ms
41,364 KB
testcase_05 AC 136 ms
41,400 KB
testcase_06 AC 137 ms
41,448 KB
testcase_07 AC 140 ms
41,252 KB
testcase_08 AC 135 ms
41,156 KB
testcase_09 AC 135 ms
41,136 KB
testcase_10 AC 137 ms
40,936 KB
testcase_11 AC 133 ms
40,896 KB
testcase_12 AC 135 ms
41,292 KB
testcase_13 AC 137 ms
40,820 KB
testcase_14 AC 133 ms
41,320 KB
testcase_15 AC 137 ms
41,104 KB
testcase_16 AC 132 ms
41,296 KB
testcase_17 AC 131 ms
41,316 KB
testcase_18 AC 133 ms
41,304 KB
testcase_19 AC 134 ms
41,464 KB
testcase_20 AC 136 ms
41,308 KB
testcase_21 AC 131 ms
41,404 KB
testcase_22 AC 123 ms
40,128 KB
testcase_23 AC 135 ms
41,116 KB
testcase_24 AC 135 ms
41,284 KB
testcase_25 AC 133 ms
41,276 KB
testcase_26 AC 132 ms
41,244 KB
testcase_27 AC 134 ms
40,728 KB
testcase_28 AC 138 ms
41,448 KB
testcase_29 AC 136 ms
41,288 KB
testcase_30 AC 136 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise119{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int ca = sc.nextInt();
    int cb = sc.nextInt();
    int min = 200;
    for(double i = 0; i < 200; i++){
      for(double j = 0; j < 200; j++){
        if(ca == (int)Math.round(i * 100 / (i + j)) && cb == (int)Math.round(j * 100 / (i + j))){
          min = Math.min(min, (int)(i + j));
        }
      }
    }
    System.out.println(min);
  }
}
0