結果

問題 No.1884 Sequence
ユーザー kakel-sankakel-san
提出日時 2023-11-21 00:11:34
言語 C#
(.NET 8.0.203)
結果
RE  
実行時間 -
コード長 1,461 bytes
コンパイル時間 8,184 ms
コンパイル使用メモリ 166,688 KB
実行使用メモリ 225,076 KB
最終ジャッジ日時 2024-09-26 06:48:10
合計ジャッジ時間 14,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,336 KB
testcase_01 AC 59 ms
30,720 KB
testcase_02 AC 58 ms
30,336 KB
testcase_03 AC 54 ms
30,336 KB
testcase_04 RE -
testcase_05 AC 58 ms
30,208 KB
testcase_06 AC 58 ms
30,336 KB
testcase_07 AC 58 ms
30,464 KB
testcase_08 AC 59 ms
30,720 KB
testcase_09 AC 58 ms
30,336 KB
testcase_10 AC 181 ms
75,776 KB
testcase_11 AC 180 ms
75,904 KB
testcase_12 AC 75 ms
41,472 KB
testcase_13 AC 84 ms
42,240 KB
testcase_14 AC 83 ms
41,856 KB
testcase_15 AC 141 ms
58,368 KB
testcase_16 AC 185 ms
75,520 KB
testcase_17 AC 105 ms
54,144 KB
testcase_18 AC 132 ms
58,624 KB
testcase_19 AC 116 ms
55,424 KB
testcase_20 AC 126 ms
55,808 KB
testcase_21 AC 106 ms
50,688 KB
testcase_22 AC 133 ms
56,960 KB
testcase_23 AC 181 ms
75,648 KB
testcase_24 AC 184 ms
75,520 KB
testcase_25 AC 178 ms
74,752 KB
testcase_26 AC 186 ms
75,752 KB
testcase_27 AC 77 ms
43,648 KB
testcase_28 RE -
testcase_29 AC 79 ms
43,392 KB
testcase_30 AC 84 ms
43,392 KB
testcase_31 AC 130 ms
55,296 KB
testcase_32 AC 180 ms
74,496 KB
testcase_33 AC 144 ms
75,776 KB
testcase_34 AC 142 ms
75,752 KB
testcase_35 AC 88 ms
46,592 KB
testcase_36 AC 129 ms
66,292 KB
testcase_37 AC 151 ms
75,764 KB
testcase_38 AC 143 ms
72,576 KB
testcase_39 AC 98 ms
50,304 KB
testcase_40 AC 104 ms
53,248 KB
testcase_41 AC 161 ms
70,784 KB
testcase_42 AC 166 ms
225,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 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)
    {
        if (n == 2) return true;
        var nonzero = a.Where(ai => ai != 0).ToList();
        if (nonzero.Count == 0)
        {
            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