結果

問題 No.2462 七人カノン
ユーザー kakel-sankakel-san
提出日時 2023-09-14 22:43:14
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 988 ms
コンパイル使用メモリ 112,748 KB
実行使用メモリ 45,956 KB
最終ジャッジ日時 2024-07-02 05:12:03
合計ジャッジ時間 10,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
26,652 KB
testcase_01 AC 37 ms
24,500 KB
testcase_02 AC 36 ms
26,536 KB
testcase_03 AC 40 ms
26,676 KB
testcase_04 AC 38 ms
26,576 KB
testcase_05 AC 38 ms
28,584 KB
testcase_06 AC 39 ms
26,672 KB
testcase_07 AC 39 ms
26,416 KB
testcase_08 AC 39 ms
28,580 KB
testcase_09 AC 38 ms
26,672 KB
testcase_10 AC 38 ms
26,544 KB
testcase_11 AC 39 ms
26,548 KB
testcase_12 AC 39 ms
28,592 KB
testcase_13 AC 252 ms
40,516 KB
testcase_14 AC 265 ms
42,980 KB
testcase_15 AC 250 ms
42,508 KB
testcase_16 AC 279 ms
39,676 KB
testcase_17 AC 281 ms
43,776 KB
testcase_18 AC 78 ms
30,268 KB
testcase_19 AC 77 ms
30,068 KB
testcase_20 AC 307 ms
43,740 KB
testcase_21 AC 304 ms
41,704 KB
testcase_22 AC 309 ms
45,956 KB
testcase_23 AC 310 ms
41,840 KB
testcase_24 AC 198 ms
37,996 KB
testcase_25 AC 319 ms
43,964 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[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, q) = (c[0], c[1]);
        var map = NArr(q);
        var num = new int[100_001];
        foreach (var que in map)
        {
            ++num[que[1]];
            --num[que[2]];
        }
        for (var i = 1; i < num.Length; ++i) num[i] += num[i - 1];
        var show = new double[num.Length + 1];
        for (var i = 0; i < num.Length; ++i)
        {
            if (num[i] > 0) show[i + 1] += 1.0 / num[i];
        }
        for (var i = 1; i < show.Length; ++i) show[i] += show[i - 1];
        var ans = new double[n];
        foreach (var que in map)
        {
            ans[que[0] - 1] += show[que[2]] - show[que[1]];
        }
        WriteLine(string.Join("\n", ans));
    }
}
0