結果

問題 No.221 犯罪都市
ユーザー GrenacheGrenache
提出日時 2015-06-08 11:41:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 365 bytes
コンパイル時間 3,027 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 41,360 KB
最終ジャッジ日時 2024-06-07 02:28:47
合計ジャッジ時間 5,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,124 KB
testcase_01 AC 123 ms
41,176 KB
testcase_02 AC 123 ms
41,116 KB
testcase_03 AC 106 ms
39,968 KB
testcase_04 AC 123 ms
41,272 KB
testcase_05 AC 125 ms
41,232 KB
testcase_06 AC 120 ms
41,268 KB
testcase_07 AC 116 ms
40,520 KB
testcase_08 AC 119 ms
41,104 KB
testcase_09 AC 108 ms
40,280 KB
testcase_10 AC 120 ms
41,112 KB
testcase_11 AC 120 ms
41,048 KB
testcase_12 AC 121 ms
40,736 KB
testcase_13 AC 126 ms
41,292 KB
testcase_14 AC 123 ms
41,048 KB
testcase_15 AC 121 ms
41,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder221 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        double g = 0.01 * (10000 - n) + 0.99 * n;
        double ret = 0.01 * (10000 - n) / g;

        System.out.printf("%.3f\n", ret * 100);
        
        sc.close();
    }
}
0