結果
問題 | No.1664 Unstable f(n) |
ユーザー | masayamatu |
提出日時 | 2021-09-04 09:58:51 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 766 bytes |
コンパイル時間 | 11,042 ms |
コンパイル使用メモリ | 169,392 KB |
実行使用メモリ | 36,092 KB |
最終ジャッジ日時 | 2024-05-09 22:25:55 |
合計ジャッジ時間 | 16,199 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
32,256 KB |
testcase_01 | AC | 68 ms
36,092 KB |
testcase_02 | AC | 53 ms
28,544 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 53 ms
28,800 KB |
testcase_07 | AC | 54 ms
28,800 KB |
testcase_08 | AC | 54 ms
28,800 KB |
testcase_09 | AC | 53 ms
28,928 KB |
testcase_10 | AC | 53 ms
28,672 KB |
testcase_11 | AC | 495 ms
30,080 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (101 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/
ソースコード
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); } } }