結果

問題 No.1271 初めての級数
ユーザー 遭難者遭難者
提出日時 2020-09-20 16:12:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 2,022 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-06-24 10:49:27
合計ジャッジ時間 4,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 135 ms
54,184 KB
testcase_02 AC 133 ms
54,148 KB
testcase_03 AC 134 ms
54,084 KB
testcase_04 AC 134 ms
54,048 KB
testcase_05 AC 134 ms
53,980 KB
testcase_06 AC 135 ms
54,516 KB
testcase_07 AC 137 ms
54,356 KB
testcase_08 AC 136 ms
54,448 KB
testcase_09 AC 135 ms
53,972 KB
testcase_10 AC 134 ms
54,056 KB
testcase_11 AC 135 ms
54,164 KB
testcase_12 AC 135 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
public class Main {
    public static void main(String[]args){
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		int n = sc.nextInt();
		double yono = 0;
		for(int i = 1 ; i <= n ; i++){
			yono += 1.0 / i;
		}
		yono /= n;
		ou.println(yono);
		ou.flush();
	}
}
0