結果

問題 No.1946 ロッカーの問題
ユーザー kokatsukokatsu
提出日時 2022-10-26 22:12:30
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 426 ms / 3,000 ms
コード長 726 bytes
コンパイル時間 1,988 ms
コンパイル使用メモリ 210,888 KB
実行使用メモリ 15,096 KB
最終ジャッジ日時 2024-06-22 16:30:14
合計ジャッジ時間 6,723 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 402 ms
6,940 KB
testcase_03 AC 426 ms
15,064 KB
testcase_04 AC 411 ms
6,940 KB
testcase_05 AC 275 ms
7,128 KB
testcase_06 AC 314 ms
7,232 KB
testcase_07 AC 227 ms
7,028 KB
testcase_08 AC 113 ms
9,388 KB
testcase_09 AC 374 ms
15,096 KB
testcase_10 AC 306 ms
12,700 KB
testcase_11 AC 9 ms
6,944 KB
testcase_12 AC 141 ms
7,620 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 24 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 176 ms
10,968 KB
testcase_18 AC 419 ms
11,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

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

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

    auto last = new bool[](N+1);
    foreach (a; A) last[a] = true;

    int res;
    auto isOpened = new bool[](N+1);
    foreach_reverse (i; 1 .. N+1) {
        int[] divisors;
        int d = 1;
        while (d * d <= i) {
            if (i % d == 0) {
                divisors ~= d;
                if (d * d != i) divisors ~= i / d;
            }

            ++d;
        }

        if (isOpened[i] == last[i]) {
            ++res;
        }
        else {
            foreach (divisor; divisors) {
                isOpened[divisor] = !isOpened[divisor];
            }
        }
    }

    res.writeln;
}
0