結果

問題 No.376 立方体のN等分 (2)
ユーザー eitahoeitaho
提出日時 2016-06-05 00:57:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 669 ms / 5,000 ms
コード長 2,841 bytes
コンパイル時間 1,013 ms
コンパイル使用メモリ 116,920 KB
実行使用メモリ 26,612 KB
最終ジャッジ日時 2024-11-06 21:57:38
合計ジャッジ時間 9,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,240 KB
testcase_01 AC 29 ms
24,444 KB
testcase_02 AC 124 ms
24,192 KB
testcase_03 AC 122 ms
24,584 KB
testcase_04 AC 139 ms
24,328 KB
testcase_05 AC 29 ms
24,200 KB
testcase_06 AC 29 ms
24,620 KB
testcase_07 AC 29 ms
24,244 KB
testcase_08 AC 35 ms
24,708 KB
testcase_09 AC 53 ms
24,320 KB
testcase_10 AC 96 ms
24,496 KB
testcase_11 AC 79 ms
24,584 KB
testcase_12 AC 95 ms
24,316 KB
testcase_13 AC 100 ms
26,368 KB
testcase_14 AC 107 ms
26,236 KB
testcase_15 AC 115 ms
24,712 KB
testcase_16 AC 583 ms
24,688 KB
testcase_17 AC 126 ms
24,240 KB
testcase_18 AC 128 ms
24,240 KB
testcase_19 AC 131 ms
26,496 KB
testcase_20 AC 136 ms
24,200 KB
testcase_21 AC 604 ms
24,572 KB
testcase_22 AC 139 ms
24,456 KB
testcase_23 AC 621 ms
26,236 KB
testcase_24 AC 599 ms
24,700 KB
testcase_25 AC 141 ms
24,320 KB
testcase_26 AC 669 ms
26,612 KB
testcase_27 AC 143 ms
24,332 KB
testcase_28 AC 143 ms
24,240 KB
testcase_29 AC 142 ms
24,332 KB
testcase_30 AC 143 ms
24,192 KB
testcase_31 AC 143 ms
24,492 KB
testcase_32 AC 143 ms
24,240 KB
testcase_33 AC 144 ms
24,588 KB
testcase_34 AC 143 ms
26,372 KB
testcase_35 AC 143 ms
24,460 KB
testcase_36 AC 143 ms
24,328 KB
testcase_37 AC 143 ms
24,452 KB
testcase_38 AC 144 ms
26,364 KB
testcase_39 AC 144 ms
26,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Diagnostics;
using System.Numerics;
using Enu = System.Linq.Enumerable;

public class Program
{
    public void Solve()
    {
        long N = Reader.Long();
        var div = Divisors(N).ToArray();
        long K = (long)Math.Pow(N, 1.0 / 3) + 1;
        long ans = N - 1;

        for (int a = 0; a < div.Length && div[a] <= K; a++)
            for (long b = a, r = N / div[a]; b < div.Length; b++)
                if (r% div[b] == 0)
                    ans = Math.Min(ans, div[a] + div[b] + r / div[b] - 3);

        Console.WriteLine(ans + " " + (N - 1));
    }

    static List<long> Divisors(long n)
    {
        var divisors = new List<long>();
        long sqrt = (long)Math.Sqrt(n);
        for (long i = 1; i <= sqrt; i++)
            if (n % i == 0)
            {
                divisors.Add(i);
                if (i * i != n) divisors.Add(n / i);
            }
        divisors.Sort();
        return divisors;
    }
}


class Entry { static void Main() { new Program().Solve(); } }
class Reader
{
    static TextReader reader = Console.In;
    static readonly char[] separator = { ' ' };
    static readonly StringSplitOptions op = StringSplitOptions.RemoveEmptyEntries;
    static string[] A = new string[0];
    static int i;
    static void Init() { A = new string[0]; }
    public static void Set(TextReader r) { reader = r; Init(); }
    public static void Set(string file) { reader = new StreamReader(file); Init(); }
    public static bool HasNext() { return CheckNext(); }
    public static string String() { return Next(); }
    public static int Int() { return int.Parse(Next()); }
    public static long Long() { return long.Parse(Next()); }
    public static double Double() { return double.Parse(Next()); }
    public static int[] IntLine() { return Array.ConvertAll(Split(Line()), int.Parse); }
    public static int[] IntArray(int N) { return Range(N, Int); }
    public static int[][] IntTable(int H) { return Range(H, IntLine); }
    public static string[] StringArray(int N) { return Range(N, Next); }
    public static string[][] StringTable(int N) { return Range(N, () => Split(Line())); }
    public static string Line() { return reader.ReadLine().Trim(); }
    static T[] Range<T>(int N, Func<T> f) { return Enu.Range(0, N).Select(i => f()).ToArray(); }
    static string[] Split(string s) { return s.Split(separator, op); }
    static string Next() { CheckNext(); return A[i++]; }
    static bool CheckNext()
    {
        if (i < A.Length) return true;
        string line = reader.ReadLine();
        if (line == null) return false;
        if (line == "") return CheckNext();
        A = Split(line);
        i = 0;
        return true;
    }
}
0