結果

問題 No.2519 Coins in Array
ユーザー kakel-sankakel-san
提出日時 2023-10-27 22:31:27
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 2,116 bytes
コンパイル時間 8,660 ms
コンパイル使用メモリ 168,048 KB
実行使用メモリ 211,276 KB
最終ジャッジ日時 2024-09-25 14:34:23
合計ジャッジ時間 15,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
30,080 KB
testcase_01 AC 52 ms
29,824 KB
testcase_02 AC 53 ms
30,208 KB
testcase_03 AC 51 ms
30,208 KB
testcase_04 AC 53 ms
30,208 KB
testcase_05 AC 51 ms
30,336 KB
testcase_06 AC 56 ms
30,080 KB
testcase_07 AC 55 ms
30,080 KB
testcase_08 AC 55 ms
30,208 KB
testcase_09 AC 56 ms
29,824 KB
testcase_10 AC 54 ms
30,208 KB
testcase_11 AC 55 ms
30,208 KB
testcase_12 AC 55 ms
30,208 KB
testcase_13 AC 53 ms
30,208 KB
testcase_14 AC 51 ms
30,208 KB
testcase_15 AC 54 ms
30,080 KB
testcase_16 AC 55 ms
29,952 KB
testcase_17 AC 53 ms
30,336 KB
testcase_18 AC 53 ms
29,952 KB
testcase_19 AC 57 ms
30,464 KB
testcase_20 AC 54 ms
30,336 KB
testcase_21 AC 57 ms
29,952 KB
testcase_22 AC 53 ms
29,952 KB
testcase_23 AC 113 ms
61,448 KB
testcase_24 WA -
testcase_25 AC 56 ms
30,208 KB
testcase_26 AC 56 ms
30,080 KB
testcase_27 AC 118 ms
61,448 KB
testcase_28 AC 119 ms
61,440 KB
testcase_29 WA -
testcase_30 AC 116 ms
58,168 KB
testcase_31 AC 78 ms
36,608 KB
testcase_32 AC 92 ms
46,208 KB
testcase_33 AC 105 ms
51,584 KB
testcase_34 AC 86 ms
41,344 KB
testcase_35 WA -
testcase_36 AC 89 ms
41,316 KB
testcase_37 WA -
testcase_38 AC 98 ms
47,104 KB
testcase_39 AC 91 ms
41,484 KB
testcase_40 AC 111 ms
211,276 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (90 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();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var (m, order) = Coins(n, a);
        WriteLine(m);
        WriteLine(order);
    }
    static (long m, string order) Coins(int n, int[] a)
    {
        if (n == 2)
        {
            return (Coin(a[0], a[1]), "1 2");
        }
        if (n == 3)
        {
            var min = long.MaxValue;
            var minorder = "";
            {
                var m = Coin(Coin(a[0], a[1]), a[2]);
                if (min > m)
                {
                    min = m;
                    minorder = "1 2\n1 2";
                }
            }
            {
                var m = Coin(Coin(a[0], a[2]), a[1]);
                if (min > m)
                {
                    min = m;
                    minorder = "1 3\n1 2";
                }
            }
            {
                var m = Coin(Coin(a[1], a[2]), a[0]);
                if (min > m)
                {
                    min = m;
                    minorder = "2 3\n1 2";
                }
            }
            return (min, minorder);
        }
        var order = new System.Text.StringBuilder();
        order.Append("1 2\n1 2");
        for (var i = n - 2; i >= 2; --i)
        {
            order.Append($"\n1 {i}");
        }
        return (0, order.ToString());
    }
    static long Coin(long a, long b)
    {
        if (a == 0 || b == 0) return 0;
        if (GCD(a, b) > 1) return 0;
        return (a - 1) * (b - 1);
    }
    static long GCD(long a, long b)
    {
        if (a < b) return GCD(b, a);
        if (a % b == 0) return b;
        return GCD(b, a % b);
    }
}
0