結果

問題 No.1884 Sequence
ユーザー bluemeganebluemegane
提出日時 2022-03-26 07:17:11
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,474 bytes
コンパイル時間 1,049 ms
コンパイル使用メモリ 112,256 KB
実行使用メモリ 58,444 KB
最終ジャッジ日時 2024-10-14 16:39:09
合計ジャッジ時間 7,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,180 KB
testcase_01 AC 29 ms
24,052 KB
testcase_02 AC 29 ms
26,008 KB
testcase_03 AC 26 ms
24,312 KB
testcase_04 RE -
testcase_05 AC 30 ms
26,124 KB
testcase_06 AC 30 ms
24,108 KB
testcase_07 AC 29 ms
26,272 KB
testcase_08 AC 29 ms
24,308 KB
testcase_09 WA -
testcase_10 AC 206 ms
55,448 KB
testcase_11 AC 204 ms
54,284 KB
testcase_12 AC 66 ms
29,660 KB
testcase_13 AC 79 ms
38,892 KB
testcase_14 AC 68 ms
30,132 KB
testcase_15 AC 150 ms
50,484 KB
testcase_16 AC 204 ms
58,364 KB
testcase_17 AC 107 ms
44,548 KB
testcase_18 AC 148 ms
47,844 KB
testcase_19 AC 120 ms
44,020 KB
testcase_20 AC 138 ms
49,368 KB
testcase_21 AC 111 ms
43,676 KB
testcase_22 AC 142 ms
47,280 KB
testcase_23 AC 206 ms
58,104 KB
testcase_24 AC 206 ms
56,184 KB
testcase_25 AC 204 ms
57,352 KB
testcase_26 AC 205 ms
56,144 KB
testcase_27 AC 80 ms
39,280 KB
testcase_28 RE -
testcase_29 AC 83 ms
37,220 KB
testcase_30 AC 83 ms
37,380 KB
testcase_31 AC 133 ms
47,068 KB
testcase_32 WA -
testcase_33 AC 172 ms
57,168 KB
testcase_34 AC 176 ms
57,428 KB
testcase_35 AC 89 ms
38,128 KB
testcase_36 AC 144 ms
52,924 KB
testcase_37 AC 179 ms
58,444 KB
testcase_38 AC 166 ms
49,940 KB
testcase_39 AC 101 ms
42,732 KB
testcase_40 WA -
testcase_41 AC 182 ms
53,196 KB
testcase_42 AC 182 ms
53,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = new List<long>();
        var z = 0;
        for (int i = 0; i < n; i++)
        {
            var t = long.Parse(line[i]);
            if (t == 0) z++;
            else a.Add(t);
        }
        getAns(n, z, a);
    }
    static bool checkD0(List<long> a)
    {
        var pre = a[0];
        foreach (var x in a)
            if (x != pre) return false;
        return true;
    }
    static void getAns(int n, int z, List<long> a)
    {
        var acount = a.Count;
        if (acount == 0) { Console.WriteLine("Yes");return; }
        a.Sort();
        var dlist = new List<long>();
        var g = a[1] - a[0];
        dlist.Add(g);
        for (int i = 2; i < acount; i++)
        {
            g = Gcd(g, a[i] - a[i - 1]);
            dlist.Add(a[i] - a[i - 1]);
            if (g == 0) break;
        }
        if (g == 0) { Console.WriteLine(checkD0(a) ? "Yes" : "No"); return; }
        var ans = 0L;
        foreach (var x in dlist) ans += x / g - 1;
        Console.WriteLine(z >= ans ? "Yes" : "No");
    }
    public static long Gcd(long a, long b)
    {
        if (a < b) return Gcd(b, a);
        while (b != 0)
        {
            var w = a % b;
            a = b;
            b = w;
        }
        return a;
    }
}
0