結果

問題 No.2352 Sharpened Knife in Fall
ユーザー kakel-sankakel-san
提出日時 2023-08-09 07:12:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 581 ms / 3,000 ms
コード長 1,175 bytes
コンパイル時間 4,352 ms
コンパイル使用メモリ 112,916 KB
実行使用メモリ 41,848 KB
最終ジャッジ日時 2024-11-14 13:32:40
合計ジャッジ時間 14,788 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
26,544 KB
testcase_01 AC 30 ms
25,648 KB
testcase_02 AC 33 ms
28,720 KB
testcase_03 AC 31 ms
25,520 KB
testcase_04 AC 299 ms
38,240 KB
testcase_05 AC 31 ms
23,852 KB
testcase_06 AC 561 ms
39,684 KB
testcase_07 AC 296 ms
31,804 KB
testcase_08 AC 581 ms
39,556 KB
testcase_09 AC 579 ms
37,508 KB
testcase_10 AC 565 ms
37,636 KB
testcase_11 AC 566 ms
41,848 KB
testcase_12 AC 561 ms
39,680 KB
testcase_13 AC 558 ms
37,632 KB
testcase_14 AC 265 ms
31,784 KB
testcase_15 AC 506 ms
39,324 KB
testcase_16 AC 59 ms
28,704 KB
testcase_17 AC 45 ms
26,856 KB
testcase_18 AC 218 ms
28,468 KB
testcase_19 AC 451 ms
40,004 KB
testcase_20 AC 194 ms
28,208 KB
testcase_21 AC 192 ms
27,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (r, k) = (c[0], c[1]);
        var piece = Math.PI * r * r / (k + 1);
        var ans = new double[k];
        for (var i = 0; i < k; ++i)
        {
            var ok = (double)r;
            var ng = - (double)r;
            while (ok - ng > 0.000001)
            {
                var mid = (ok + ng) / 2;
                var th = Math.PI - Math.Acos(mid / r);
                var area = th * r * r + mid * r * Math.Sin(th);
                if (area >= piece * (i + 1)) ok = mid;
                else ng = mid;
            }
            ans[i] = ok;
        }
        WriteLine(string.Join("\n", ans));
    }
}
0