結果

問題 No.2510 Six Cube Sum Counting
コンテスト
ユーザー crimsontea
提出日時 2023-10-20 22:46:13
言語 C#
(.NET 10.0.201)
コンパイル:
dotnet_c
実行:
/usr/bin/dotnet_wrap
結果
RE  
実行時間 -
コード長 3,622 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 7,951 ms
コンパイル使用メモリ 173,020 KB
実行使用メモリ 275,920 KB
最終ジャッジ日時 2026-04-09 05:34:18
合計ジャッジ時間 29,670 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 2 RE * 1 TLE * 1 -- * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (116 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net10.0/main.dll
  main -> /home/judge/data/code/bin/Release/net10.0/publish/

ソースコード

diff #
raw source code

#nullable enable
using System;
using System.Linq;
using System.Collections;
using System.IO;
using System.Collections.Generic;
using System.Text;
using System.Numerics;
using System.Runtime.Intrinsics.X86;
using System.Buffers;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using static InputUtility;
using System.Reflection;

class Program
{
    static void Main()
    {
        InputNewLine();
        var x = NextInt32;

        var abc = Abc();
        static (int v, int c)[] Abc()
        {
            List<(int v, int c)> abc = new();
            for (int a = 0; a <= 300; a++)
            {
                for (int b = a; b <= 300; b++)
                {
                    for (int c = b; c <= 300; c++)
                    {
                        abc.Add((a * a * a + b * b * b + c * c * c, c));
                    }
                }
            }

            return abc.ToArray();
        }

        Array.Sort(abc);

        var def = Def();

        static (int v, int d)[] Def()
        {
            List<(int v, int d)> def = new();

            for (int a = 0; a <= 300; a++)
            {
                for (int b = a; b <= 300; b++)
                {
                    for (int c = b; c <= 300; c++)
                    {
                        def.Add((a * a * a + b * b * b + c * c * c, a));
                    }
                }
            }

            return def.ToArray();
        }

        Array.Sort(def);
        Array.Sort(def);

        int res = 0;

        int left = def.Length - 1;

        foreach (var (v, c) in abc)
        {
            var target = x - v;

            if (target < 0)
            {
                break;
            }

            while (left >= 0 && target <= def[left].v)
            {
                left--;
            }

            left++;

            if (target != def[left].v)
            {
                continue;
            }

            for (int i = left; i < def.Length; i++)
            {
                if (target < def[i].v)
                {
                    break;
                }

                if (c <= def[i].d)
                {
                    res++;
                }
            }
        }

        Console.WriteLine(res);
    }
}

public static class InputUtility
{
    private static string[]? s_inputs;
    private static string? s_raw;
    private static int s_index = 0;

    private static void Init() => s_index = 0;
    public static int NextInt32 => int.Parse(s_inputs![s_index++]!);
    public static uint NextUInt32 => uint.Parse(s_inputs![s_index++]!);
    public static long NextInt64 => long.Parse(s_inputs![s_index++]!);
    public static string NextString => s_inputs![s_index++];
    public static char NextChar => s_inputs![s_index++][0];
    public static int[] GetInt32Array() => s_inputs!.Select(int.Parse).ToArray();
    public static long[] GetInt64Array() => s_inputs!.Select(long.Parse).ToArray();
    public static string GetRawString() => s_raw!;
#if DEBUG
    private static TextReader? s_textReader;
    public static void SetSource(string path) => s_textReader = new StringReader(File.ReadAllText(path));
#endif
    public static bool InputNewLine()
    {
#if DEBUG
        if (s_textReader is TextReader sr)
        {
            Init();
            s_raw = sr.ReadLine()!;
            s_inputs = s_raw.Split(' ', StringSplitOptions.RemoveEmptyEntries);
            return true;
        }
#endif
        Init();
        s_raw = Console.ReadLine()!;
        s_inputs = s_raw.Split(' ', StringSplitOptions.RemoveEmptyEntries);
        return true;
    }
}
0