結果

問題 No.221 犯罪都市
ユーザー tentententen
提出日時 2020-10-07 11:13:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 256 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 73,428 KB
実行使用メモリ 41,240 KB
最終ジャッジ日時 2024-07-20 03:18:49
合計ジャッジ時間 4,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,440 KB
testcase_01 AC 116 ms
40,944 KB
testcase_02 AC 112 ms
40,584 KB
testcase_03 AC 116 ms
40,604 KB
testcase_04 AC 111 ms
41,056 KB
testcase_05 AC 117 ms
41,108 KB
testcase_06 AC 109 ms
40,448 KB
testcase_07 AC 111 ms
40,844 KB
testcase_08 AC 113 ms
41,076 KB
testcase_09 AC 112 ms
41,088 KB
testcase_10 AC 111 ms
41,004 KB
testcase_11 AC 104 ms
39,724 KB
testcase_12 AC 121 ms
41,124 KB
testcase_13 AC 115 ms
39,956 KB
testcase_14 AC 125 ms
41,240 KB
testcase_15 AC 124 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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