結果
問題 | No.2417 Div Count |
ユーザー | bluemegane |
提出日時 | 2023-08-19 10:11:47 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 622 bytes |
コンパイル時間 | 994 ms |
コンパイル使用メモリ | 109,764 KB |
実行使用メモリ | 30,836 KB |
最終ジャッジ日時 | 2024-05-06 17:24:19 |
合計ジャッジ時間 | 5,917 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
30,836 KB |
testcase_01 | AC | 24 ms
17,536 KB |
testcase_02 | AC | 24 ms
17,792 KB |
testcase_03 | AC | 23 ms
17,792 KB |
testcase_04 | AC | 24 ms
17,792 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 | 25 ms
17,792 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 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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; } }