結果

問題 No.221 犯罪都市
ユーザー dumshdumsh
提出日時 2016-11-19 22:45:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 73,964 KB
実行使用メモリ 37,224 KB
最終ジャッジ日時 2024-06-07 09:46:08
合計ジャッジ時間 3,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,848 KB
testcase_01 AC 53 ms
36,888 KB
testcase_02 AC 54 ms
37,224 KB
testcase_03 AC 53 ms
36,848 KB
testcase_04 AC 53 ms
36,900 KB
testcase_05 AC 53 ms
36,676 KB
testcase_06 AC 53 ms
36,812 KB
testcase_07 AC 53 ms
36,336 KB
testcase_08 AC 53 ms
36,868 KB
testcase_09 AC 53 ms
36,480 KB
testcase_10 AC 53 ms
36,712 KB
testcase_11 AC 55 ms
36,320 KB
testcase_12 AC 53 ms
36,336 KB
testcase_13 AC 52 ms
36,792 KB
testcase_14 AC 53 ms
36,756 KB
testcase_15 AC 54 ms
36,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		System.out.println((double)(1000000 - 100 * n)/(10000 + 98 * n));
	}
}
0