結果

問題 No.1664 Unstable f(n)
ユーザー bluemeganebluemegane
提出日時 2021-09-04 09:44:03
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 689 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 112,900 KB
実行使用メモリ 48,936 KB
最終ジャッジ日時 2024-12-17 16:19:45
合計ジャッジ時間 31,788 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
30,724 KB
testcase_01 AC 22 ms
30,840 KB
testcase_02 AC 22 ms
33,024 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 22 ms
30,672 KB
testcase_07 AC 21 ms
33,028 KB
testcase_08 AC 21 ms
48,936 KB
testcase_09 AC 22 ms
30,984 KB
testcase_10 AC 22 ms
30,712 KB
testcase_11 WA -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 WA -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 23 ms
23,904 KB
testcase_22 AC 23 ms
25,952 KB
testcase_23 AC 22 ms
22,068 KB
testcase_24 AC 24 ms
25,828 KB
testcase_25 AC 24 ms
26,196 KB
testcase_26 AC 23 ms
23,764 KB
testcase_27 AC 22 ms
24,156 KB
testcase_28 AC 21 ms
25,816 KB
testcase_29 AC 23 ms
26,088 KB
testcase_30 AC 23 ms
24,116 KB
testcase_31 AC 20 ms
23,896 KB
testcase_32 AC 39 ms
23,900 KB
testcase_33 AC 22 ms
25,948 KB
testcase_34 AC 22 ms
24,036 KB
testcase_35 TLE -
testcase_36 AC 24 ms
24,236 KB
testcase_37 AC 561 ms
22,064 KB
testcase_38 AC 21 ms
22,072 KB
testcase_39 AC 29 ms
25,688 KB
testcase_40 AC 194 ms
47,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        var n = long.Parse(Console.ReadLine().Trim());
        if (n <= 3) Console.WriteLine(n);
        getAns(n);
    }
    static void getAns(long n)
    {
        var ans = n + 1;
        var jmax = (int)(Log10(n) / Log10(2));
        for (long i = 2; i * i <= n; i++)
        {
            var p = 0;
            var x = 1L;
            while (p < jmax)
            {
                if (x * i > n) break;
                x *= i;
                p++;
            }
            var k = n - x;
            if (k >= 0) ans = Min(ans, i + p + k);
        }
        Console.WriteLine(ans);
    }
}
0