結果

問題 No.1946 ロッカーの問題
ユーザー kakel-sankakel-san
提出日時 2024-02-04 14:50:52
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 714 ms / 3,000 ms
コード長 1,125 bytes
コンパイル時間 8,231 ms
コンパイル使用メモリ 169,616 KB
実行使用メモリ 223,092 KB
最終ジャッジ日時 2024-09-28 11:17:22
合計ジャッジ時間 11,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,208 KB
testcase_01 AC 54 ms
30,208 KB
testcase_02 AC 58 ms
30,848 KB
testcase_03 AC 598 ms
71,724 KB
testcase_04 AC 59 ms
30,848 KB
testcase_05 AC 70 ms
32,128 KB
testcase_06 AC 72 ms
32,128 KB
testcase_07 AC 68 ms
31,872 KB
testcase_08 AC 178 ms
45,952 KB
testcase_09 AC 516 ms
70,776 KB
testcase_10 AC 438 ms
67,464 KB
testcase_11 AC 65 ms
32,000 KB
testcase_12 AC 124 ms
37,632 KB
testcase_13 AC 56 ms
30,208 KB
testcase_14 AC 54 ms
30,208 KB
testcase_15 AC 58 ms
30,976 KB
testcase_16 AC 54 ms
30,208 KB
testcase_17 AC 308 ms
55,936 KB
testcase_18 AC 714 ms
223,092 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var a = new int[0];
        if (m == 0) ReadLine();
        else a = NList;
        var dp = new bool[n + 1];
        foreach (var ai in a) dp[ai] = true;
        var ans = 0;
        for (var i = n; i > 0; --i)
        {
            if (dp[i])
            {
                foreach (var p in PList(i)) dp[p] = !dp[p];
            }
            else ++ans;
        }
        WriteLine(ans);
    }
    static List<int> PList(int n)
    {
        var ans = new List<int>();
        for (var i = 1; i * i <= n; ++i)
        {
            if (n % i == 0)
            {
                ans.Add(i);
                if (i * i < n) ans.Add(n / i);
            }
        }
        return ans;
    }
}
0