結果

問題 No.347 微分と積分
ユーザー HimatsubushinHimatsubushin
提出日時 2016-03-09 12:21:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 767 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 109,988 KB
実行使用メモリ 27,460 KB
最終ジャッジ日時 2024-09-24 16:42:49
合計ジャッジ時間 2,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,280 KB
testcase_01 AC 27 ms
24,876 KB
testcase_02 AC 27 ms
24,928 KB
testcase_03 AC 26 ms
25,180 KB
testcase_04 AC 27 ms
27,460 KB
testcase_05 AC 27 ms
25,008 KB
testcase_06 AC 27 ms
24,928 KB
testcase_07 AC 27 ms
24,928 KB
testcase_08 AC 27 ms
25,056 KB
testcase_09 AC 26 ms
24,800 KB
testcase_10 AC 27 ms
26,944 KB
testcase_11 AC 26 ms
25,056 KB
testcase_12 AC 27 ms
25,020 KB
testcase_13 AC 27 ms
25,304 KB
testcase_14 AC 27 ms
27,072 KB
testcase_15 AC 27 ms
26,840 KB
testcase_16 AC 26 ms
25,152 KB
testcase_17 AC 27 ms
25,152 KB
testcase_18 AC 27 ms
25,012 KB
testcase_19 AC 26 ms
22,964 KB
testcase_20 AC 27 ms
25,052 KB
testcase_21 AC 26 ms
25,180 KB
testcase_22 AC 26 ms
25,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace No347
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int b = int.Parse(Console.ReadLine());
            string[] sa = Console.ReadLine().Split(' ');
            double diff = 0.0, inte = 0.0;
            double a;

            for (int i = 0; i < n; i++)
            {
                a = double.Parse(sa[i]);

                diff += a * Math.Pow((double)b, a - 1.0);

                if (a == -1.0)
                    inte += Math.Abs(Math.Log(b));
                else
                    inte += Math.Pow((double)b, a + 1.0) / (a + 1.0);
            }

            Console.WriteLine(diff);
            Console.WriteLine(inte);
        }
    }
}
0