結果

問題 No.221 犯罪都市
ユーザー tsunabittsunabit
提出日時 2020-03-16 18:34:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 284 bytes
コンパイル時間 3,708 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-05-06 01:07:28
合計ジャッジ時間 6,388 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,748 KB
testcase_01 AC 109 ms
40,132 KB
testcase_02 AC 121 ms
41,232 KB
testcase_03 WA -
testcase_04 AC 114 ms
41,168 KB
testcase_05 AC 111 ms
41,024 KB
testcase_06 AC 96 ms
39,580 KB
testcase_07 AC 113 ms
40,988 KB
testcase_08 WA -
testcase_09 AC 115 ms
41,112 KB
testcase_10 WA -
testcase_11 AC 108 ms
40,568 KB
testcase_12 AC 113 ms
41,236 KB
testcase_13 AC 115 ms
41,380 KB
testcase_14 AC 100 ms
39,956 KB
testcase_15 AC 114 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No221 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		double k = (100*n)*0.99;
		double p = (1000000-k)*0.01;
		System.out.println(p / (k+p)*100);
	}
}
0