結果

問題 No.864 四方演算
ユーザー bluemeganebluemegane
提出日時 2021-05-05 19:09:46
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 716 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 109,340 KB
実行使用メモリ 25,808 KB
最終ジャッジ日時 2024-09-13 12:06:58
合計ジャッジ時間 2,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,684 KB
testcase_01 AC 35 ms
25,808 KB
testcase_02 AC 31 ms
25,560 KB
testcase_03 AC 32 ms
23,496 KB
testcase_04 AC 33 ms
23,624 KB
testcase_05 AC 31 ms
21,556 KB
testcase_06 AC 34 ms
25,676 KB
testcase_07 AC 33 ms
23,860 KB
testcase_08 AC 32 ms
25,548 KB
testcase_09 AC 28 ms
23,728 KB
testcase_10 AC 27 ms
23,392 KB
testcase_11 AC 26 ms
25,676 KB
testcase_12 AC 31 ms
23,504 KB
testcase_13 AC 29 ms
23,384 KB
testcase_14 AC 25 ms
23,636 KB
testcase_15 AC 35 ms
23,408 KB
testcase_16 AC 32 ms
23,984 KB
testcase_17 AC 34 ms
25,680 KB
testcase_18 AC 32 ms
23,640 KB
testcase_19 AC 30 ms
23,520 KB
testcase_20 AC 33 ms
23,860 KB
testcase_21 AC 33 ms
25,552 KB
testcase_22 AC 31 ms
25,680 KB
testcase_23 AC 25 ms
23,636 KB
testcase_24 AC 30 ms
23,520 KB
testcase_25 AC 27 ms
25,680 KB
testcase_26 AC 31 ms
23,512 KB
testcase_27 AC 23 ms
23,512 KB
testcase_28 AC 23 ms
23,372 KB
testcase_29 AC 23 ms
23,752 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var n = long.Parse(Console.ReadLine().Trim());
        var k = long.Parse(Console.ReadLine().Trim());
        getAns(n, k);
    }
    static long calc(long n, long a)
    {
        if (a > 2 * n + 1) return 0;
        if (a <= n) return a - 1;
        return 2 * n - a + 1;
    }
    static void getAns(long n, long k)
    {
        var ans = 0L;
        for (long i = 2; i * i <= k; i++)
        {
            if (k % i == 0)
            {
                var te = calc(n, i);
                if (k / i != i) ans += te * calc(n, k / i) * 2;
                else ans += te * te;
            }
        }
        Console.WriteLine(ans);
    }
}
0