結果

問題 No.221 犯罪都市
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-21 22:26:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 306 bytes
コンパイル時間 3,799 ms
コンパイル使用メモリ 77,844 KB
実行使用メモリ 54,712 KB
最終ジャッジ日時 2024-06-07 09:09:20
合計ジャッジ時間 6,425 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,236 KB
testcase_01 AC 149 ms
53,988 KB
testcase_02 AC 147 ms
54,712 KB
testcase_03 AC 141 ms
54,164 KB
testcase_04 AC 142 ms
54,552 KB
testcase_05 AC 151 ms
54,148 KB
testcase_06 AC 145 ms
54,116 KB
testcase_07 AC 144 ms
54,212 KB
testcase_08 AC 145 ms
54,072 KB
testcase_09 AC 147 ms
54,220 KB
testcase_10 AC 145 ms
54,072 KB
testcase_11 AC 148 ms
54,252 KB
testcase_12 AC 148 ms
54,140 KB
testcase_13 AC 149 ms
54,332 KB
testcase_14 AC 145 ms
54,288 KB
testcase_15 AC 131 ms
53,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

    Scanner sc = new Scanner(System.in);

    double n = sc.nextDouble();
    double w = (1000000 - n * 100) / 100;
    double r = n * 100 * 99 / 100;
    double a = w + r;
    System.out.println(w / a * 100);
  }
}
0