結果

問題 No.1271 初めての級数
ユーザー bluemeganebluemegane
提出日時 2021-07-07 07:16:51
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 887 ms
コンパイル使用メモリ 109,656 KB
実行使用メモリ 25,556 KB
最終ジャッジ日時 2024-07-01 12:17:29
合計ジャッジ時間 1,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 26 ms
18,688 KB
testcase_02 AC 27 ms
18,816 KB
testcase_03 AC 25 ms
18,944 KB
testcase_04 AC 27 ms
18,944 KB
testcase_05 AC 27 ms
18,688 KB
testcase_06 AC 26 ms
18,560 KB
testcase_07 AC 26 ms
18,688 KB
testcase_08 AC 26 ms
18,816 KB
testcase_09 AC 26 ms
18,560 KB
testcase_10 AC 27 ms
18,688 KB
testcase_11 AC 26 ms
18,816 KB
testcase_12 AC 26 ms
18,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var k = int.Parse(Console.ReadLine().Trim());
        getAns(k);
    }
    static void getAns(int k)
    {
        if (k == 0) { Console.WriteLine(0);return; }
        var ans = 0d;
        for (int i = 1; i <= k; i++) ans += 1d / i;
        ans /= k;
        Console.WriteLine(ans);
    }
}
0