結果

問題 No.903 太郎の確率
ユーザー ks2mks2m
提出日時 2019-10-11 21:20:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 50,452 KB
最終ジャッジ日時 2024-11-25 06:19:42
合計ジャッジ時間 2,541 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
49,960 KB
testcase_01 AC 47 ms
49,884 KB
testcase_02 AC 46 ms
50,316 KB
testcase_03 AC 47 ms
49,888 KB
testcase_04 AC 46 ms
50,084 KB
testcase_05 AC 47 ms
50,452 KB
testcase_06 AC 48 ms
50,196 KB
testcase_07 AC 48 ms
49,660 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