結果

問題 No.1076 寿司打
ユーザー shinnshinnshinnshinn
提出日時 2020-06-14 18:08:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-06-27 15:15:29
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,132 KB
testcase_01 AC 126 ms
41,188 KB
testcase_02 AC 124 ms
41,088 KB
testcase_03 AC 123 ms
41,252 KB
testcase_04 AC 125 ms
41,292 KB
testcase_05 AC 130 ms
41,348 KB
testcase_06 AC 124 ms
41,192 KB
testcase_07 AC 131 ms
41,216 KB
testcase_08 AC 121 ms
41,476 KB
testcase_09 AC 123 ms
41,336 KB
testcase_10 AC 125 ms
41,600 KB
testcase_11 AC 123 ms
41,392 KB
testcase_12 AC 112 ms
40,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main{
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		double p = Double.parseDouble(scan.next());
		System.out.println(p/(1-p));
	}
}
0