結果

問題 No.1009 面積の求め方
コンテスト
ユーザー kakel-san
提出日時 2025-11-20 23:46:56
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 8,681 ms
コンパイル使用メモリ 166,732 KB
実行使用メモリ 187,524 KB
最終ジャッジ日時 2025-11-20 23:47:08
合計ジャッジ時間 9,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (113 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #
raw source code

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Runtime.Intrinsics.X86;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (a, b) = (c[0], c[1]);
        var ans = 0.0;
        var d = 0.00001;
        for (var i = (double)a; i <= b; i += d)
        {
            ans += - (i - a) * (i - b) * d;
        }
        WriteLine(ans);
    }
}
0