結果

問題 No.221 犯罪都市
ユーザー tsunabittsunabit
提出日時 2020-03-16 18:59:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 276 bytes
コンパイル時間 2,938 ms
コンパイル使用メモリ 76,996 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-11-28 02:59:13
合計ジャッジ時間 5,535 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,304 KB
testcase_01 AC 110 ms
41,232 KB
testcase_02 AC 125 ms
41,360 KB
testcase_03 AC 111 ms
41,196 KB
testcase_04 AC 112 ms
41,144 KB
testcase_05 AC 118 ms
41,272 KB
testcase_06 AC 124 ms
41,264 KB
testcase_07 AC 120 ms
41,120 KB
testcase_08 AC 107 ms
41,004 KB
testcase_09 AC 105 ms
41,288 KB
testcase_10 AC 116 ms
41,404 KB
testcase_11 AC 115 ms
41,412 KB
testcase_12 AC 114 ms
41,320 KB
testcase_13 AC 113 ms
41,200 KB
testcase_14 AC 123 ms
41,012 KB
testcase_15 AC 112 ms
41,260 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 = n*0.99;
		double p = (10000-n)*0.01;
		System.out.println((p/(k+p))*100);
	}
}
0