結果

問題 No.2929 Miracle Branch
ユーザー kakel-sankakel-san
提出日時 2024-11-01 00:39:29
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,851 bytes
コンパイル時間 11,474 ms
コンパイル使用メモリ 167,856 KB
実行使用メモリ 220,684 KB
最終ジャッジ日時 2024-11-01 00:39:54
合計ジャッジ時間 21,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
31,740 KB
testcase_01 AC 74 ms
31,744 KB
testcase_02 AC 70 ms
31,232 KB
testcase_03 AC 75 ms
31,964 KB
testcase_04 AC 75 ms
32,000 KB
testcase_05 AC 75 ms
31,616 KB
testcase_06 AC 74 ms
31,872 KB
testcase_07 AC 75 ms
31,872 KB
testcase_08 AC 75 ms
31,744 KB
testcase_09 AC 75 ms
31,744 KB
testcase_10 AC 75 ms
31,744 KB
testcase_11 AC 74 ms
31,872 KB
testcase_12 AC 77 ms
31,616 KB
testcase_13 AC 75 ms
31,720 KB
testcase_14 AC 75 ms
31,616 KB
testcase_15 AC 74 ms
31,964 KB
testcase_16 AC 75 ms
31,872 KB
testcase_17 AC 75 ms
31,616 KB
testcase_18 AC 75 ms
32,128 KB
testcase_19 AC 76 ms
32,256 KB
testcase_20 AC 77 ms
32,508 KB
testcase_21 AC 78 ms
33,536 KB
testcase_22 AC 75 ms
31,744 KB
testcase_23 AC 82 ms
34,944 KB
testcase_24 AC 102 ms
42,240 KB
testcase_25 AC 77 ms
32,768 KB
testcase_26 AC 75 ms
31,872 KB
testcase_27 AC 75 ms
31,872 KB
testcase_28 AC 70 ms
31,104 KB
testcase_29 AC 70 ms
31,104 KB
testcase_30 AC 72 ms
31,360 KB
testcase_31 AC 70 ms
31,360 KB
testcase_32 AC 70 ms
31,232 KB
testcase_33 AC 83 ms
41,984 KB
testcase_34 AC 173 ms
67,964 KB
testcase_35 AC 165 ms
67,836 KB
testcase_36 AC 84 ms
42,112 KB
testcase_37 AC 170 ms
67,972 KB
testcase_38 AC 167 ms
67,820 KB
testcase_39 AC 167 ms
68,032 KB
testcase_40 AC 166 ms
67,852 KB
testcase_41 AC 177 ms
67,972 KB
testcase_42 AC 172 ms
67,956 KB
testcase_43 AC 164 ms
66,088 KB
testcase_44 AC 172 ms
63,464 KB
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (108 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var x = long.Parse(ReadLine());
        var prev = -1;
        var ans = new List<int[]>();
        var color = new List<char>();
        if (x == 1)
        {
            color.Add('b');
            color.Add('g');
            ans.Add(new int[] { 1, 2 });
        }
        {
            while (x % 4 == 0)
            {
                color.Add('b');
                var br = color.Count;
                if (prev > 0) ans.Add(new int[] { prev, br });
                for (var j = 0; j < 4; ++j)
                {
                    color.Add('g');
                    ans.Add(new int[] { br, color.Count });
                }
                prev = br;
                x /= 4;
            }
        }
        for (var i = 2; i <= 200000; ++i)
        {
            while (x % i == 0)
            {
                color.Add('b');
                var br = color.Count;
                if (prev > 0) ans.Add(new int[] { prev, br });
                for (var j = 0; j < i; ++j)
                {
                    color.Add('g');
                    ans.Add(new int[] { br, color.Count });
                }
                prev = br;
                x /= i;
            }
        }
        if (x > 1 || ans.Count > 200000)
        {
            WriteLine(-1);
            return;
        }
        WriteLine(color.Count);
        WriteLine(string.Join("\n", ans.Select(ai => string.Join(" ", ai))));
        WriteLine(string.Join(" ", color));
    }
}
0