結果

問題 No.1664 Unstable f(n)
ユーザー masayamatumasayamatu
提出日時 2021-09-04 10:32:31
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,132 bytes
コンパイル時間 10,338 ms
コンパイル使用メモリ 171,064 KB
実行使用メモリ 184,256 KB
最終ジャッジ日時 2024-05-09 23:13:31
合計ジャッジ時間 12,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
28,544 KB
testcase_01 AC 51 ms
28,800 KB
testcase_02 AC 51 ms
28,288 KB
testcase_03 AC 51 ms
28,288 KB
testcase_04 AC 51 ms
28,800 KB
testcase_05 AC 51 ms
28,544 KB
testcase_06 AC 51 ms
28,672 KB
testcase_07 AC 50 ms
28,800 KB
testcase_08 AC 51 ms
28,800 KB
testcase_09 AC 52 ms
29,056 KB
testcase_10 AC 52 ms
28,544 KB
testcase_11 AC 51 ms
28,800 KB
testcase_12 AC 51 ms
28,288 KB
testcase_13 AC 51 ms
28,800 KB
testcase_14 AC 51 ms
28,544 KB
testcase_15 AC 51 ms
28,928 KB
testcase_16 AC 52 ms
28,672 KB
testcase_17 AC 51 ms
28,800 KB
testcase_18 AC 51 ms
28,544 KB
testcase_19 AC 52 ms
28,800 KB
testcase_20 AC 52 ms
28,800 KB
testcase_21 AC 49 ms
28,288 KB
testcase_22 AC 52 ms
28,800 KB
testcase_23 AC 51 ms
28,928 KB
testcase_24 AC 51 ms
28,800 KB
testcase_25 AC 51 ms
28,544 KB
testcase_26 AC 51 ms
28,288 KB
testcase_27 AC 51 ms
28,288 KB
testcase_28 AC 51 ms
28,800 KB
testcase_29 AC 51 ms
28,544 KB
testcase_30 AC 51 ms
28,800 KB
testcase_31 AC 51 ms
28,800 KB
testcase_32 AC 53 ms
28,800 KB
testcase_33 AC 53 ms
28,672 KB
testcase_34 AC 53 ms
28,672 KB
testcase_35 AC 52 ms
28,928 KB
testcase_36 AC 51 ms
28,416 KB
testcase_37 AC 52 ms
28,800 KB
testcase_38 AC 52 ms
28,800 KB
testcase_39 AC 52 ms
28,800 KB
testcase_40 AC 50 ms
184,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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); 
                return;
            } 
            long mpow(long x, long y)
            {
                long ret = 1;
                while (y > 0)
                {
                    if((y & 1) == 1) ret *= x;
                    x *= x;
                    y >>= 1;
                }
                return ret;         
            }
            for(long j = 2; j <= Math.Log2(n); j++)
            {
                long i = (long)Math.Pow(n, 1.0 / j);
                while(Math.Pow(i + 1, j) <= n) i++;
                long k = n - mpow(i, j);
                ans = Math.Min(ans, i + j + k);
            }
            Console.WriteLine(ans);
        }
    }
}
0