結果

問題 No.2417 Div Count
ユーザー bluemeganebluemegane
提出日時 2023-08-19 10:11:47
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 1,168 ms
コンパイル使用メモリ 65,200 KB
実行使用メモリ 27,172 KB
最終ジャッジ日時 2023-08-19 10:11:56
合計ジャッジ時間 7,971 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
27,172 KB
testcase_01 AC 56 ms
20,564 KB
testcase_02 AC 56 ms
22,580 KB
testcase_03 AC 57 ms
20,660 KB
testcase_04 AC 56 ms
22,696 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 57 ms
22,688 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

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 (int i = 1; i * i <= n; i++)
        {
            if (n % i == 0)
            {
                ans++;
                if (n != i * i) ans++;
            }
        }
        return ans;
    }
}
0