結果

問題 No.1271 初めての級数
ユーザー bluemeganebluemegane
提出日時 2021-07-07 07:22:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 790 ms
コンパイル使用メモリ 112,260 KB
実行使用メモリ 26,780 KB
最終ジャッジ日時 2024-07-01 12:17:33
合計ジャッジ時間 2,234 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
26,576 KB
testcase_01 AC 61 ms
24,788 KB
testcase_02 AC 61 ms
24,876 KB
testcase_03 AC 60 ms
25,008 KB
testcase_04 AC 61 ms
24,792 KB
testcase_05 AC 61 ms
24,624 KB
testcase_06 AC 61 ms
26,780 KB
testcase_07 AC 61 ms
26,760 KB
testcase_08 AC 61 ms
24,924 KB
testcase_09 AC 62 ms
26,636 KB
testcase_10 AC 61 ms
24,712 KB
testcase_11 AC 61 ms
26,644 KB
testcase_12 AC 61 ms
24,536 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)
    {
        var ans = 0d;
        for (int i = 1; i <= 10000000; i++)
        {
            ans += 1d / i / (i + k);
        }
        Console.WriteLine(ans);
    }
}
0