結果

問題 No.864 四方演算
ユーザー bayashiko_rbayashiko_r
提出日時 2019-08-16 22:22:06
言語 C#(csc)
(csc 3.9.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 987 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 111,020 KB
実行使用メモリ 26,060 KB
最終ジャッジ日時 2024-09-24 18:04:10
合計ジャッジ時間 3,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 26 ms
25,684 KB
testcase_03 AC 35 ms
21,680 KB
testcase_04 AC 35 ms
24,140 KB
testcase_05 AC 33 ms
25,804 KB
testcase_06 AC 37 ms
25,676 KB
testcase_07 AC 35 ms
23,776 KB
testcase_08 AC 32 ms
23,520 KB
testcase_09 AC 27 ms
23,768 KB
testcase_10 AC 27 ms
23,884 KB
testcase_11 AC 24 ms
24,148 KB
testcase_12 AC 33 ms
25,808 KB
testcase_13 AC 29 ms
24,144 KB
testcase_14 AC 25 ms
23,624 KB
testcase_15 AC 37 ms
25,684 KB
testcase_16 AC 34 ms
25,800 KB
testcase_17 AC 35 ms
23,776 KB
testcase_18 AC 32 ms
23,640 KB
testcase_19 AC 31 ms
23,764 KB
testcase_20 AC 39 ms
25,812 KB
testcase_21 AC 35 ms
23,900 KB
testcase_22 AC 32 ms
26,060 KB
testcase_23 AC 23 ms
23,644 KB
testcase_24 AC 31 ms
23,640 KB
testcase_25 AC 26 ms
23,984 KB
testcase_26 AC 31 ms
23,764 KB
testcase_27 AC 22 ms
23,768 KB
testcase_28 AC 22 ms
25,944 KB
testcase_29 AC 20 ms
23,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program {
    static void Main(string[] args) {
        //入力
        long N = long.Parse(Console.ReadLine());
        long K = long.Parse(Console.ReadLine());

        //回答となるペア数
        long pair = 0;

        for (long i = 2; i <= Math.Min(2 * N, Math.Sqrt(K)); i++) {
            if (K % i != 0) {
                continue;
            }

            if ((K / i) > (2 * N)) {
                continue;
            }

            long combi_ac;
            long combi_bd;

            //a,cの組み合わせ
            if (i >= N + 2) {
                combi_ac = 2 * N - i + 1;
            } else {
                combi_ac = i - 1;
            }

            //b,dの組み合わせ
            if ((K / i) >= N + 2) {
                combi_bd = 2 * N - (K / i) + 1;
            } else {
                combi_bd = (K / i) - 1;
            }

            pair += combi_ac * combi_bd * 2;
        } 

        Console.WriteLine(pair);
    }
}
0