結果

問題 No.1666 累乗数
ユーザー kakel-sankakel-san
提出日時 2024-01-05 14:09:49
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 2,414 bytes
コンパイル時間 7,633 ms
コンパイル使用メモリ 167,540 KB
実行使用メモリ 252,044 KB
最終ジャッジ日時 2024-09-27 19:03:12
合計ジャッジ時間 18,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 433 ms
97,456 KB
testcase_01 AC 451 ms
97,460 KB
testcase_02 AC 438 ms
97,452 KB
testcase_03 AC 466 ms
97,424 KB
testcase_04 AC 455 ms
97,332 KB
testcase_05 AC 452 ms
97,428 KB
testcase_06 AC 462 ms
97,452 KB
testcase_07 AC 454 ms
97,452 KB
testcase_08 AC 453 ms
97,584 KB
testcase_09 AC 458 ms
97,328 KB
testcase_10 AC 461 ms
97,452 KB
testcase_11 AC 462 ms
97,324 KB
testcase_12 AC 448 ms
97,324 KB
testcase_13 AC 440 ms
97,584 KB
testcase_14 AC 463 ms
97,328 KB
testcase_15 AC 453 ms
97,324 KB
testcase_16 AC 456 ms
97,324 KB
testcase_17 AC 459 ms
97,436 KB
testcase_18 AC 456 ms
97,456 KB
testcase_19 AC 443 ms
252,044 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var mlist = CreateMList();
        var t = NN;
        var ans = new long[t];
        for (var u = 0; u < t; ++u)
        {
            var k = NN;
            ans[u] = Multi(k, mlist);
        }
        WriteLine(string.Join("\n", ans));
    }
    static List<long> CreateMList()
    {
        var mset = new HashSet<long>();
        for (var i = 2L; i <= 1000000; ++i)
        {
            var tmp = i * i;
            var prev = tmp;
            while (true)
            {
                tmp *= i;
                if (tmp < prev || tmp % i != 0) break;
                mset.Add(tmp);
                prev = tmp;
            }
        }
        foreach (var mi in new List<long>(mset))
        {
            var sq = MaxSqrt(mi);
            if (sq * sq == mi) mset.Remove(mi);
        }
        var mlist = new List<long>(mset);
        mlist.Sort();
        return mlist;
    }
    static long Sqrt(long n)
    {
        var sq = (long)Math.Sqrt(n);
        if (sq * sq == n) return sq;
        if ((sq + 1) * (sq + 1) == n) return sq + 1;
        return -1;
    }
    static long Multi(int k, List<long> mlist)
    {
        var ok = 1_000_000_000_000_000_001;
        var ng = 0L;
        while (ok - ng > 1)
        {
            var mid = (ok + ng) / 2;
            if (MaxSqrt(mid) + LowerBound(0, mid + 1, mlist) >= k) ok = mid;
            else ng = mid;
        }
        return ok;
    }
    static long MaxSqrt(long n)
    {
        var sq = (long)Math.Sqrt(n);
        if (sq * sq <= n) return sq;
        return sq - 1;
    }
    static int LowerBound(int left, long min, List<long> list)
    {
        if (list[left] >= min) return left;
        var ng = left;
        var ok = list.Count;
        while (ok - ng > 1)
        {
            var center = (ng + ok) / 2;
            if (list[center] < min) ng = center;
            else ok = center;
        }
        return ok;
    }
}
0