結果

問題 No.903 太郎の確率
ユーザー ks2mks2m
提出日時 2019-10-11 21:20:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 72,788 KB
実行使用メモリ 37,012 KB
最終ジャッジ日時 2024-05-04 00:37:45
合計ジャッジ時間 2,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,756 KB
testcase_01 AC 44 ms
37,012 KB
testcase_02 AC 46 ms
36,628 KB
testcase_03 AC 46 ms
36,888 KB
testcase_04 AC 46 ms
36,836 KB
testcase_05 AC 45 ms
36,832 KB
testcase_06 AC 46 ms
36,772 KB
testcase_07 AC 48 ms
36,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		double n = Integer.parseInt(sa[0]);
		br.close();

		System.out.println(1 / n);
	}
}
0