結果

問題 No.1884 Sequence
ユーザー kokatsukokatsu
提出日時 2022-03-25 21:53:39
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 214,716 KB
実行使用メモリ 14,328 KB
最終ジャッジ日時 2024-06-22 14:41:32
合計ジャッジ時間 5,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 93 ms
13,876 KB
testcase_11 AC 89 ms
13,968 KB
testcase_12 AC 15 ms
8,808 KB
testcase_13 AC 16 ms
9,836 KB
testcase_14 AC 16 ms
8,972 KB
testcase_15 AC 54 ms
11,588 KB
testcase_16 AC 83 ms
13,884 KB
testcase_17 AC 32 ms
10,716 KB
testcase_18 AC 45 ms
12,632 KB
testcase_19 AC 40 ms
11,132 KB
testcase_20 AC 47 ms
11,352 KB
testcase_21 AC 35 ms
9,488 KB
testcase_22 AC 50 ms
11,176 KB
testcase_23 AC 85 ms
13,968 KB
testcase_24 AC 85 ms
13,948 KB
testcase_25 AC 82 ms
14,188 KB
testcase_26 AC 82 ms
13,844 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 18 ms
10,028 KB
testcase_31 AC 45 ms
10,344 KB
testcase_32 AC 82 ms
14,328 KB
testcase_33 AC 63 ms
13,948 KB
testcase_34 AC 61 ms
13,996 KB
testcase_35 AC 22 ms
9,276 KB
testcase_36 AC 49 ms
11,996 KB
testcase_37 AC 62 ms
13,952 KB
testcase_38 AC 59 ms
14,028 KB
testcase_39 AC 29 ms
9,364 KB
testcase_40 AC 31 ms
10,248 KB
testcase_41 AC 69 ms
13,124 KB
testcase_42 AC 67 ms
12,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/numeric.d(2999): Warning: cannot inline function `std.numeric.gcdImpl!ulong.gcdImpl`

ソースコード

diff #

import std;

void main() {
    long N;
    readf("%d\n", N);

    auto A = readln.chomp.split.to!(long[]);

    A.sort!"a > b";

    bool diff, diff0;
    long mx = A[0], mn = A[0];
    long[] B;
    foreach (i; 1 .. N) {
        if (A[i] == 0) break;

        long d = A[i-1] - A[i];
        (d > 0 ? diff : diff0) = true;
        B ~= d;
        mn = min(mn, A[i]);
    }

    bool isOK;
    if (!B.empty) {
        long g = B.fold!gcd;
        if (diff0) isOK = !diff;
        else isOK = mx <= mn + g * (N - 1);
    }

    writeln(isOK ? "Yes" : "No");
}
0