結果

問題 No.2177 Recurring ab
ユーザー kakel-sankakel-san
提出日時 2023-09-04 21:45:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 1,266 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 111,536 KB
実行使用メモリ 25,932 KB
最終ジャッジ日時 2024-06-22 19:13:21
合計ジャッジ時間 2,148 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,728 KB
testcase_01 AC 24 ms
23,520 KB
testcase_02 AC 24 ms
21,816 KB
testcase_03 AC 23 ms
23,520 KB
testcase_04 AC 24 ms
23,596 KB
testcase_05 AC 24 ms
23,396 KB
testcase_06 AC 24 ms
25,548 KB
testcase_07 AC 24 ms
23,776 KB
testcase_08 AC 24 ms
25,432 KB
testcase_09 AC 24 ms
25,688 KB
testcase_10 AC 24 ms
23,648 KB
testcase_11 AC 23 ms
21,552 KB
testcase_12 AC 25 ms
25,676 KB
testcase_13 AC 24 ms
21,680 KB
testcase_14 AC 24 ms
25,684 KB
testcase_15 AC 24 ms
25,680 KB
testcase_16 AC 24 ms
23,856 KB
testcase_17 AC 24 ms
25,560 KB
testcase_18 AC 24 ms
23,772 KB
testcase_19 AC 25 ms
25,932 KB
testcase_20 AC 24 ms
23,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        long n = NN;
        WriteLine(Recur(n));
    }
    static long Recur(long n)
    {
        var ans = 0L;
        for (var p = 2; p <= 20; ++p) for (var a = 0; a < p && a < 10; ++a) for (var b = 0; b < p && b < 10; ++b)
        {
            if (a == b) continue;
            if ((a * p + b) < p * p - 1 && n * (a * p + b) > p * p - 1)
            {
                ++ans;
            }
        }
        for (var a = 0; a < 10; ++a) for (var b = 0; b < 10; ++b)
        {
            if (a == b) continue;
            if (n * (a * 21 + b) <= 21 * 21 - 1) continue;
            var ok = 21L;
            var ng = 1_000_000_001L;
            while (ng - ok > 1)
            {
                var mid = (ok + ng) / 2;
                if (n * (a * mid + b) > mid * mid - 1) ok = mid;
                else ng = mid;
            }
            ans += ok - 20;
        }
        return ans;
    }
}
0