結果

問題 No.221 犯罪都市
ユーザー tsunabittsunabit
提出日時 2020-03-16 18:34:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 284 bytes
コンパイル時間 3,722 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-11-28 02:58:13
合計ジャッジ時間 7,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,144 KB
testcase_01 AC 121 ms
40,500 KB
testcase_02 AC 134 ms
41,640 KB
testcase_03 WA -
testcase_04 AC 132 ms
41,020 KB
testcase_05 AC 132 ms
41,296 KB
testcase_06 AC 133 ms
40,940 KB
testcase_07 AC 132 ms
41,056 KB
testcase_08 WA -
testcase_09 AC 134 ms
41,240 KB
testcase_10 WA -
testcase_11 AC 134 ms
41,316 KB
testcase_12 AC 133 ms
41,084 KB
testcase_13 AC 132 ms
41,360 KB
testcase_14 AC 136 ms
41,516 KB
testcase_15 AC 122 ms
40,056 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