結果

問題 No.338 アンケート機能
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-24 06:48:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 3,500 ms
コンパイル使用メモリ 78,216 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-10-11 20:11:37
合計ジャッジ時間 8,978 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
40,968 KB
testcase_01 AC 136 ms
41,176 KB
testcase_02 AC 137 ms
41,428 KB
testcase_03 AC 139 ms
41,396 KB
testcase_04 WA -
testcase_05 AC 137 ms
41,360 KB
testcase_06 WA -
testcase_07 AC 134 ms
40,664 KB
testcase_08 AC 138 ms
41,152 KB
testcase_09 AC 139 ms
41,112 KB
testcase_10 AC 139 ms
41,156 KB
testcase_11 AC 139 ms
41,224 KB
testcase_12 AC 141 ms
41,248 KB
testcase_13 AC 136 ms
41,352 KB
testcase_14 AC 135 ms
41,140 KB
testcase_15 AC 137 ms
40,916 KB
testcase_16 AC 140 ms
41,148 KB
testcase_17 AC 135 ms
41,352 KB
testcase_18 AC 135 ms
41,248 KB
testcase_19 AC 123 ms
40,100 KB
testcase_20 AC 135 ms
41,304 KB
testcase_21 AC 134 ms
40,800 KB
testcase_22 AC 121 ms
40,084 KB
testcase_23 AC 137 ms
41,336 KB
testcase_24 AC 133 ms
41,180 KB
testcase_25 AC 135 ms
41,180 KB
testcase_26 AC 139 ms
41,236 KB
testcase_27 AC 136 ms
41,376 KB
testcase_28 AC 134 ms
41,204 KB
testcase_29 AC 135 ms
41,256 KB
testcase_30 AC 136 ms
41,112 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 = 1; i < 200; i++){
      for(double j = 1; 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