結果

問題 No.221 犯罪都市
ユーザー minus9dminus9d
提出日時 2015-06-05 23:15:04
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 320 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 73,836 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-06-07 02:13:32
合計ジャッジ時間 5,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,212 KB
testcase_01 AC 133 ms
41,304 KB
testcase_02 AC 129 ms
41,080 KB
testcase_03 AC 119 ms
40,152 KB
testcase_04 AC 133 ms
41,100 KB
testcase_05 AC 131 ms
41,260 KB
testcase_06 AC 133 ms
39,920 KB
testcase_07 AC 133 ms
41,284 KB
testcase_08 AC 134 ms
40,924 KB
testcase_09 AC 134 ms
40,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) {
        int N = sc.nextInt();
        double correct = N * 99 / 100;
        double wrong = (10000 - N) / 100;
        System.out.println(wrong / (wrong + correct) * 100);
    }
}
0