結果

問題 No.2051 Divide
ユーザー デカブツデカブツ
提出日時 2022-08-21 13:03:23
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 457 bytes
コンパイル時間 7,320 ms
コンパイル使用メモリ 170,672 KB
実行使用メモリ 37,284 KB
最終ジャッジ日時 2024-10-10 06:00:00
合計ジャッジ時間 12,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
31,872 KB
testcase_01 AC 50 ms
35,744 KB
testcase_02 AC 49 ms
31,180 KB
testcase_03 AC 50 ms
28,544 KB
testcase_04 AC 60 ms
30,176 KB
testcase_05 AC 60 ms
30,176 KB
testcase_06 AC 62 ms
30,208 KB
testcase_07 AC 61 ms
29,824 KB
testcase_08 AC 60 ms
29,952 KB
testcase_09 AC 49 ms
28,800 KB
testcase_10 AC 63 ms
30,080 KB
testcase_11 AC 50 ms
28,928 KB
testcase_12 AC 51 ms
28,800 KB
testcase_13 AC 51 ms
28,796 KB
testcase_14 AC 51 ms
28,800 KB
testcase_15 AC 49 ms
28,672 KB
testcase_16 AC 49 ms
28,800 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 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 System.Collections.Generic;

namespace test
{
    static class Program
    {
        static void Main()
        {
            string[] a = Console.ReadLine().Split(' ');
            long b = long.Parse(a[0]);
            long c = long.Parse(a[1]);
            long count = 0;
            for(long i = c;i <= b; i += c)
            {
                if(b%i==0)count++;
            }
            Console.WriteLine(count);
        }
    }
}
0