結果

問題 No.2417 Div Count
ユーザー kakel-sankakel-san
提出日時 2023-10-09 11:41:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 2,973 ms
コンパイル使用メモリ 112,160 KB
実行使用メモリ 27,316 KB
最終ジャッジ日時 2024-07-26 18:26:05
合計ジャッジ時間 4,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
27,188 KB
testcase_01 AC 29 ms
22,840 KB
testcase_02 AC 29 ms
25,116 KB
testcase_03 AC 29 ms
22,840 KB
testcase_04 AC 29 ms
25,144 KB
testcase_05 AC 30 ms
24,892 KB
testcase_06 AC 30 ms
27,036 KB
testcase_07 AC 30 ms
25,248 KB
testcase_08 AC 30 ms
25,276 KB
testcase_09 AC 29 ms
25,236 KB
testcase_10 AC 30 ms
25,144 KB
testcase_11 AC 29 ms
22,704 KB
testcase_12 AC 30 ms
25,152 KB
testcase_13 AC 30 ms
25,260 KB
testcase_14 AC 29 ms
25,132 KB
testcase_15 AC 30 ms
25,272 KB
testcase_16 AC 30 ms
27,284 KB
testcase_17 AC 29 ms
27,316 KB
testcase_18 AC 30 ms
27,280 KB
testcase_19 AC 30 ms
25,020 KB
testcase_20 AC 30 ms
25,272 KB
testcase_21 AC 30 ms
27,272 KB
testcase_22 AC 29 ms
24,976 KB
testcase_23 AC 29 ms
25,136 KB
testcase_24 AC 30 ms
27,292 KB
testcase_25 AC 30 ms
25,248 KB
testcase_26 AC 29 ms
25,024 KB
testcase_27 AC 30 ms
24,888 KB
testcase_28 AC 31 ms
25,148 KB
testcase_29 AC 32 ms
25,008 KB
testcase_30 AC 31 ms
27,276 KB
testcase_31 AC 30 ms
25,012 KB
testcase_32 AC 34 ms
25,148 KB
testcase_33 AC 31 ms
25,020 KB
testcase_34 AC 30 ms
24,760 KB
testcase_35 AC 35 ms
25,016 KB
testcase_36 AC 33 ms
25,148 KB
testcase_37 AC 32 ms
22,968 KB
testcase_38 AC 41 ms
25,016 KB
testcase_39 AC 35 ms
25,132 KB
testcase_40 AC 32 ms
27,056 KB
testcase_41 AC 30 ms
22,832 KB
testcase_42 AC 29 ms
24,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var ans = 0;
        foreach (var a in Divs(n - k))
        {
            if (n % a == k) ++ans;
        }
        WriteLine(ans);
    }
    static List<long> Divs(long n)
    {
        var list = new List<long>();
        for (var i = 1L; i * i <= n; ++i)
        {
            if (n % i == 0)
            {
                list.Add(i);
                if (i * i < n) list.Add(n / i);
            }
        }
        return list;
    }
}
0