結果

問題 No.1884 Sequence
ユーザー bluemeganebluemegane
提出日時 2022-03-26 07:18:55
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,473 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 105,216 KB
実行使用メモリ 49,152 KB
最終ジャッジ日時 2024-10-14 16:42:39
合計ジャッジ時間 9,682 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,792 KB
testcase_01 AC 25 ms
17,536 KB
testcase_02 AC 24 ms
17,920 KB
testcase_03 AC 21 ms
17,536 KB
testcase_04 AC 23 ms
17,664 KB
testcase_05 AC 21 ms
17,664 KB
testcase_06 AC 22 ms
17,792 KB
testcase_07 AC 25 ms
17,792 KB
testcase_08 AC 24 ms
17,920 KB
testcase_09 WA -
testcase_10 AC 189 ms
48,896 KB
testcase_11 AC 189 ms
48,896 KB
testcase_12 AC 58 ms
25,472 KB
testcase_13 AC 68 ms
30,592 KB
testcase_14 AC 59 ms
25,600 KB
testcase_15 AC 134 ms
41,856 KB
testcase_16 AC 188 ms
48,828 KB
testcase_17 AC 95 ms
36,352 KB
testcase_18 AC 136 ms
41,472 KB
testcase_19 AC 107 ms
39,936 KB
testcase_20 AC 122 ms
40,960 KB
testcase_21 AC 102 ms
35,328 KB
testcase_22 AC 133 ms
40,832 KB
testcase_23 AC 185 ms
48,836 KB
testcase_24 AC 186 ms
48,960 KB
testcase_25 AC 182 ms
47,960 KB
testcase_26 AC 190 ms
48,792 KB
testcase_27 AC 72 ms
30,848 KB
testcase_28 AC 72 ms
30,976 KB
testcase_29 AC 72 ms
30,976 KB
testcase_30 AC 75 ms
30,848 KB
testcase_31 AC 115 ms
40,704 KB
testcase_32 WA -
testcase_33 AC 153 ms
49,024 KB
testcase_34 AC 155 ms
49,152 KB
testcase_35 AC 79 ms
31,872 KB
testcase_36 AC 129 ms
42,880 KB
testcase_37 AC 162 ms
49,024 KB
testcase_38 AC 144 ms
45,568 KB
testcase_39 AC 87 ms
34,176 KB
testcase_40 WA -
testcase_41 AC 163 ms
44,820 KB
testcase_42 AC 162 ms
44,932 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 <=2) { 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