結果

問題 No.903 太郎の確率
ユーザー GodNegotoGodNegoto
提出日時 2019-11-06 17:21:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 6,028 ms
コンパイル使用メモリ 70,892 KB
実行使用メモリ 55,916 KB
最終ジャッジ日時 2023-10-13 02:37:53
合計ジャッジ時間 7,097 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
55,828 KB
testcase_01 AC 122 ms
55,584 KB
testcase_02 AC 123 ms
55,516 KB
testcase_03 AC 123 ms
55,916 KB
testcase_04 AC 124 ms
55,772 KB
testcase_05 AC 123 ms
55,912 KB
testcase_06 AC 121 ms
55,916 KB
testcase_07 AC 123 ms
55,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class sample6 {
	public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	double N = sc.nextInt();
	System.out.println(1 / N);
	}
}
0