結果

問題 No.1076 寿司打
ユーザー tentententen
提出日時 2020-08-19 11:18:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 2,952 ms
コンパイル使用メモリ 77,124 KB
実行使用メモリ 54,776 KB
最終ジャッジ日時 2024-10-12 03:36:45
合計ジャッジ時間 5,254 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
54,272 KB
testcase_01 AC 156 ms
54,160 KB
testcase_02 AC 175 ms
54,360 KB
testcase_03 AC 165 ms
54,296 KB
testcase_04 AC 160 ms
54,132 KB
testcase_05 AC 157 ms
54,244 KB
testcase_06 AC 151 ms
54,056 KB
testcase_07 AC 154 ms
54,392 KB
testcase_08 AC 152 ms
54,200 KB
testcase_09 AC 152 ms
54,320 KB
testcase_10 AC 153 ms
54,180 KB
testcase_11 AC 153 ms
54,080 KB
testcase_12 AC 151 ms
54,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println(1 / (1 - sc.nextDouble()) - 1);
    }
} 
0