結果

問題 No.903 太郎の確率
ユーザー GodNegotoGodNegoto
提出日時 2019-11-06 17:21:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 3,369 ms
コンパイル使用メモリ 73,756 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-09-15 00:20:52
合計ジャッジ時間 5,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,168 KB
testcase_01 AC 133 ms
41,292 KB
testcase_02 AC 136 ms
41,004 KB
testcase_03 AC 133 ms
41,344 KB
testcase_04 AC 132 ms
40,880 KB
testcase_05 AC 133 ms
41,144 KB
testcase_06 AC 133 ms
41,144 KB
testcase_07 AC 133 ms
41,060 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