結果

問題 No.1995 CHIKA Road
ユーザー kakel-sankakel-san
提出日時 2023-09-27 23:40:34
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 3,042 ms
コンパイル使用メモリ 106,496 KB
実行使用メモリ 27,136 KB
最終ジャッジ日時 2024-07-20 18:02:05
合計ジャッジ時間 10,408 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,072 KB
testcase_01 AC 30 ms
19,072 KB
testcase_02 AC 30 ms
19,072 KB
testcase_03 AC 30 ms
19,072 KB
testcase_04 AC 29 ms
18,944 KB
testcase_05 AC 30 ms
18,816 KB
testcase_06 AC 43 ms
22,016 KB
testcase_07 AC 72 ms
23,296 KB
testcase_08 AC 30 ms
18,944 KB
testcase_09 AC 30 ms
19,072 KB
testcase_10 AC 159 ms
26,752 KB
testcase_11 AC 189 ms
26,880 KB
testcase_12 AC 176 ms
27,136 KB
testcase_13 AC 85 ms
24,064 KB
testcase_14 AC 85 ms
23,808 KB
testcase_15 AC 169 ms
26,496 KB
testcase_16 AC 53 ms
22,912 KB
testcase_17 AC 123 ms
25,088 KB
testcase_18 AC 184 ms
26,880 KB
testcase_19 AC 185 ms
26,880 KB
testcase_20 AC 112 ms
24,960 KB
testcase_21 AC 103 ms
24,704 KB
testcase_22 AC 177 ms
26,624 KB
testcase_23 AC 75 ms
23,168 KB
testcase_24 AC 155 ms
26,112 KB
testcase_25 AC 58 ms
23,136 KB
testcase_26 AC 82 ms
23,808 KB
testcase_27 AC 151 ms
26,240 KB
testcase_28 AC 103 ms
24,576 KB
testcase_29 AC 170 ms
26,496 KB
testcase_30 AC 58 ms
23,040 KB
testcase_31 AC 41 ms
21,760 KB
testcase_32 AC 61 ms
23,124 KB
testcase_33 AC 143 ms
26,112 KB
testcase_34 AC 44 ms
22,272 KB
testcase_35 AC 78 ms
23,552 KB
testcase_36 AC 87 ms
23,936 KB
testcase_37 AC 168 ms
26,496 KB
testcase_38 AC 125 ms
25,088 KB
testcase_39 AC 40 ms
21,760 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, m) = (c[0], c[1]);
        var map = NArr(m);
        Array.Sort(map, (l, r) => l[1].CompareTo(r[1]));
        var pos = 1;
        var ans = 2 * n - 2;
        for (var i = 0; i < m; ++i)
        {
            if (pos <= map[i][0])
            {
                pos = map[i][1];
                --ans;
            }
        }
        WriteLine(ans);
    }
}
0