結果

問題 No.1884 Sequence
ユーザー kakel-sankakel-san
提出日時 2023-11-21 00:14:48
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,426 bytes
コンパイル時間 8,163 ms
コンパイル使用メモリ 164,316 KB
実行使用メモリ 224,220 KB
最終ジャッジ日時 2024-09-26 06:48:26
合計ジャッジ時間 13,884 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,336 KB
testcase_01 AC 55 ms
30,592 KB
testcase_02 AC 57 ms
30,336 KB
testcase_03 AC 51 ms
29,952 KB
testcase_04 AC 53 ms
30,080 KB
testcase_05 AC 53 ms
30,336 KB
testcase_06 AC 55 ms
30,336 KB
testcase_07 AC 54 ms
30,208 KB
testcase_08 AC 57 ms
30,720 KB
testcase_09 AC 56 ms
30,592 KB
testcase_10 AC 182 ms
75,776 KB
testcase_11 AC 181 ms
75,752 KB
testcase_12 AC 77 ms
41,728 KB
testcase_13 AC 76 ms
42,368 KB
testcase_14 AC 77 ms
41,984 KB
testcase_15 AC 139 ms
58,240 KB
testcase_16 AC 187 ms
75,904 KB
testcase_17 AC 106 ms
54,132 KB
testcase_18 AC 132 ms
57,984 KB
testcase_19 AC 113 ms
55,520 KB
testcase_20 AC 128 ms
56,192 KB
testcase_21 AC 111 ms
50,560 KB
testcase_22 AC 132 ms
56,832 KB
testcase_23 AC 184 ms
75,648 KB
testcase_24 AC 187 ms
75,648 KB
testcase_25 AC 184 ms
74,496 KB
testcase_26 AC 178 ms
75,392 KB
testcase_27 AC 80 ms
43,008 KB
testcase_28 AC 83 ms
43,520 KB
testcase_29 AC 79 ms
43,624 KB
testcase_30 AC 81 ms
43,776 KB
testcase_31 AC 128 ms
55,552 KB
testcase_32 AC 183 ms
74,496 KB
testcase_33 AC 147 ms
75,520 KB
testcase_34 AC 147 ms
76,032 KB
testcase_35 AC 89 ms
46,848 KB
testcase_36 AC 129 ms
66,688 KB
testcase_37 AC 147 ms
75,772 KB
testcase_38 AC 142 ms
72,700 KB
testcase_39 AC 100 ms
50,164 KB
testcase_40 AC 103 ms
53,248 KB
testcase_41 AC 165 ms
70,632 KB
testcase_42 AC 163 ms
224,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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();
        // Test();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        WriteLine(Card(n, a) ? "Yes" : "No");
    }
    static bool Card(int n, long[] a)
    {
        var nonzero = a.Where(ai => ai != 0).ToList();
        if (nonzero.Count < 2)
        {
            return true;
        }
        nonzero.Sort();
        var dlist = new List<long>();
        for (var i = 0; i + 1 < nonzero.Count; ++i) dlist.Add(nonzero[i + 1] - nonzero[i]);
        if (dlist.Any(d => d == 0))
        {
            return nonzero[0] == nonzero[^1];
        }
        var gcd = dlist[0];
        for (var i = 1; i < dlist.Count; ++i) gcd = GCD(gcd, dlist[i]);
        var zerocount = (long)n - nonzero.Count;
        foreach (var d in dlist)
        {
            zerocount -= d / gcd - 1;
            if (zerocount < 0)
            {
                return false;
            }
        }
        return true;
    }
    static long GCD(long a, long b)
    {
        if (a < b) return GCD(b, a);
        if (a % b == 0) return b;
        return GCD(b, a % b);
    }
}
0