結果

問題 No.2451 Redistribute Integers
ユーザー InTheBloomInTheBloom
提出日時 2023-09-01 21:25:05
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 3,777 ms
コンパイル使用メモリ 173,440 KB
実行使用メモリ 28,184 KB
最終ジャッジ日時 2024-06-11 10:57:50
合計ジャッジ時間 5,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 82 ms
24,812 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
10,028 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 49 ms
11,136 KB
testcase_17 AC 74 ms
15,236 KB
testcase_18 WA -
testcase_19 AC 9 ms
5,376 KB
testcase_20 AC 82 ms
14,592 KB
testcase_21 AC 106 ms
26,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int N = readln.chomp.to!int;
    int[] A = readln.split.to!(int[]);

    solve(N, A);
}

void solve (int N, int[] A) {
    // 一つの要素から N-2 を引くともとらえられるので、限界まで引いたらいい。
    if (N != 2) {
        foreach (ref a; A) {
            a %= N-2;
            if (a < 0) {
                a += N-2;
            }
        }
    }

    foreach (a; A) {
        if (a != A[0]) {
            writeln("No");
            return;
        }
    }

    writeln("Yes");
}
0