結果
問題 | No.221 犯罪都市 |
ユーザー | samplelpmas |
提出日時 | 2017-05-11 02:47:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 134 ms / 5,000 ms |
コード長 | 586 bytes |
コンパイル時間 | 2,011 ms |
コンパイル使用メモリ | 73,672 KB |
実行使用メモリ | 41,336 KB |
最終ジャッジ日時 | 2024-06-07 11:41:49 |
合計ジャッジ時間 | 4,935 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
41,060 KB |
testcase_01 | AC | 131 ms
41,148 KB |
testcase_02 | AC | 132 ms
41,268 KB |
testcase_03 | AC | 131 ms
40,976 KB |
testcase_04 | AC | 132 ms
41,240 KB |
testcase_05 | AC | 133 ms
41,240 KB |
testcase_06 | AC | 131 ms
41,116 KB |
testcase_07 | AC | 131 ms
41,088 KB |
testcase_08 | AC | 134 ms
41,144 KB |
testcase_09 | AC | 133 ms
41,300 KB |
testcase_10 | AC | 132 ms
41,256 KB |
testcase_11 | AC | 129 ms
41,336 KB |
testcase_12 | AC | 132 ms
41,136 KB |
testcase_13 | AC | 131 ms
40,924 KB |
testcase_14 | AC | 128 ms
41,244 KB |
testcase_15 | AC | 117 ms
40,124 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int mafia = (1_000_000 / 10_000) * N; int normalPeople = 1_000_000 - mafia; double arrestedMafia = mafia * 0.99; double arrestedNormalPeople = normalPeople * 0.01; double arrestedPeopleSum = arrestedMafia + arrestedNormalPeople; double mistakenArrestRate = arrestedNormalPeople / arrestedPeopleSum * 100; System.out.println(mistakenArrestRate); } }