結果

問題 No.2142 Segment Zero
ユーザー kakel-sankakel-san
提出日時 2023-09-17 20:05:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 105,344 KB
実行使用メモリ 62,256 KB
最終ジャッジ日時 2024-07-04 14:19:51
合計ジャッジ時間 7,976 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
19,968 KB
testcase_01 AC 226 ms
61,096 KB
testcase_02 AC 27 ms
19,840 KB
testcase_03 AC 29 ms
19,968 KB
testcase_04 AC 226 ms
62,256 KB
testcase_05 AC 226 ms
60,696 KB
testcase_06 AC 27 ms
19,840 KB
testcase_07 AC 66 ms
30,976 KB
testcase_08 AC 218 ms
59,804 KB
testcase_09 AC 128 ms
44,032 KB
testcase_10 AC 217 ms
60,980 KB
testcase_11 AC 214 ms
61,092 KB
testcase_12 AC 209 ms
60,972 KB
testcase_13 AC 220 ms
59,800 KB
testcase_14 AC 225 ms
60,324 KB
testcase_15 AC 220 ms
59,672 KB
testcase_16 AC 224 ms
60,940 KB
testcase_17 AC 182 ms
58,128 KB
testcase_18 AC 32 ms
20,608 KB
testcase_19 AC 48 ms
24,832 KB
testcase_20 AC 121 ms
43,008 KB
testcase_21 AC 97 ms
40,960 KB
testcase_22 AC 166 ms
58,024 KB
testcase_23 AC 55 ms
29,440 KB
testcase_24 AC 70 ms
31,360 KB
testcase_25 AC 53 ms
29,312 KB
testcase_26 AC 111 ms
42,368 KB
testcase_27 AC 68 ms
30,976 KB
testcase_28 AC 97 ms
41,472 KB
testcase_29 AC 109 ms
42,752 KB
testcase_30 AC 160 ms
57,756 KB
testcase_31 AC 30 ms
20,608 KB
testcase_32 AC 64 ms
30,208 KB
testcase_33 AC 46 ms
24,832 KB
testcase_34 AC 66 ms
30,208 KB
testcase_35 AC 218 ms
60,708 KB
testcase_36 AC 63 ms
29,824 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 long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var rest = n * (n + 1) / 2 - k;
        var set = new HashSet<long>();
        set.Add(0);
        for (var i = 1L; i <= n; ++i)
        {
            var d = i * (i + 1) / 2;
            if (set.Contains(d - rest))
            {
                WriteLine(1);
                return;
            }
            set.Add(d);
        }
        WriteLine(2);
    }
}
0