結果

問題 No.903 太郎の確率
ユーザー d-yoshd-yosh
提出日時 2019-12-09 08:37:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 3,024 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-06-11 20:04:47
合計ジャッジ時間 3,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
54,240 KB
testcase_01 AC 117 ms
54,076 KB
testcase_02 AC 98 ms
53,092 KB
testcase_03 AC 112 ms
54,232 KB
testcase_04 AC 111 ms
54,040 KB
testcase_05 AC 116 ms
54,136 KB
testcase_06 AC 119 ms
53,848 KB
testcase_07 AC 118 ms
53,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double n = Double.parseDouble(sc.next());

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