結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,376 KB
testcase_01 AC 134 ms
54,340 KB
testcase_02 AC 137 ms
54,300 KB
testcase_03 AC 136 ms
54,264 KB
testcase_04 AC 136 ms
54,120 KB
testcase_05 AC 134 ms
54,232 KB
testcase_06 AC 133 ms
54,360 KB
testcase_07 AC 134 ms
54,300 KB
testcase_08 AC 135 ms
54,308 KB
testcase_09 AC 135 ms
54,020 KB
testcase_10 AC 134 ms
54,052 KB
testcase_11 AC 136 ms
54,372 KB
testcase_12 AC 135 ms
54,084 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();
		if(n == 0) ou.println("1.644934066848226436472");
		else{
			double yono = 0;
			for(int i = 1 ; i <= n ; i++){
				yono += 1.0 / i;
			}
			yono /= n;
			ou.println(yono);
		}
		ou.flush();
	}
}
0