結果

問題 No.10 +か×か
ユーザー Himatsubushin
提出日時 2022-02-09 15:49:27
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 785 bytes
コンパイル時間 2,562 ms
コンパイル使用メモリ 106,368 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-06-24 19:36:17
合計ジャッジ時間 9,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 WA * 1 TLE * 1 -- * 8
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

namespace No._10
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int a = int.Parse(Console.ReadLine());
            int[] d = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();
            calc(n, a, d, 1, d[0], "");
        }

        static void calc(int n, int a, int[] d, int l, int s, string o)
        {
            if (n == l)
            {
                if (s == a)
                {
                    Console.WriteLine(o);
                }
            }
            else
            {
                calc(n, a, d, l + 1, s + d[l], o + "+");
                calc(n, a, d, l + 1, s * d[l], o + "*");
            }
        }
    }
}
0