結果

問題 No.2417 Div Count
ユーザー bluemeganebluemegane
提出日時 2023-08-19 10:12:28
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 1,471 ms
コンパイル使用メモリ 65,216 KB
実行使用メモリ 24,932 KB
最終ジャッジ日時 2023-08-19 10:12:34
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge9 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
22,696 KB
testcase_01 AC 51 ms
22,796 KB
testcase_02 AC 52 ms
20,668 KB
testcase_03 AC 54 ms
20,800 KB
testcase_04 AC 49 ms
20,760 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 49 ms
20,744 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = long.Parse(line[0]);
        var k = long.Parse(line[1]);
        getAns(n, k);
    }
    static void getAns(long n, long k)
    {
        var c = getDiv(n - k);
        Console.WriteLine(k == 0 ? c : c - 1);
    }
    static int getDiv(long n)
    {
        var ans = 0;
        for (long i = 1; i * i <= n; i++)
        {
            if (n % i == 0)
            {
                ans++;
                if (n != i * i) ans++;
            }
        }
        return ans;
    }
}
0