結果

問題 No.1664 Unstable f(n)
ユーザー masayamatumasayamatu
提出日時 2021-09-04 09:58:51
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 766 bytes
コンパイル時間 8,554 ms
コンパイル使用メモリ 170,936 KB
実行使用メモリ 60,928 KB
最終ジャッジ日時 2024-12-17 16:51:06
合計ジャッジ時間 40,874 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
32,384 KB
testcase_01 AC 62 ms
37,156 KB
testcase_02 AC 48 ms
59,648 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 45 ms
32,384 KB
testcase_07 AC 47 ms
35,744 KB
testcase_08 AC 47 ms
59,520 KB
testcase_09 AC 47 ms
32,488 KB
testcase_10 AC 48 ms
36,008 KB
testcase_11 AC 445 ms
60,284 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,730 ms
33,780 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 59 ms
33,408 KB
testcase_22 AC 57 ms
36,768 KB
testcase_23 AC 56 ms
29,824 KB
testcase_24 AC 56 ms
30,080 KB
testcase_25 AC 55 ms
29,952 KB
testcase_26 AC 47 ms
28,772 KB
testcase_27 AC 47 ms
29,056 KB
testcase_28 AC 49 ms
29,056 KB
testcase_29 AC 47 ms
28,800 KB
testcase_30 AC 48 ms
29,184 KB
testcase_31 AC 48 ms
28,772 KB
testcase_32 AC 107 ms
30,208 KB
testcase_33 AC 61 ms
30,052 KB
testcase_34 AC 50 ms
29,184 KB
testcase_35 TLE -
testcase_36 AC 61 ms
29,952 KB
testcase_37 AC 1,025 ms
30,080 KB
testcase_38 AC 48 ms
29,056 KB
testcase_39 AC 74 ms
30,208 KB
testcase_40 AC 386 ms
60,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (88 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 System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;

namespace yukicoder
{
    class Program
    {
        const int intMax = 1000000000;
        const long longMax = 2000000000000000000;
        static void Main(string[] args)
        {
            long n = long.Parse(Console.ReadLine());
            long ans = longMax;
            if(n < 4) Console.WriteLine(n);
            for(long j = 2; j <= Math.Log2(n); j++)
            {
                long i = (long)Math.Pow(n, 1 / j);
                while(Math.Pow(i + 1, j) <= n) i++;
                long k = n - (long)Math.Pow(i, j);
                ans = Math.Min(ans, i + j + k);
            }
            Console.WriteLine(ans);
        }
    }
}
0