結果

問題 No.10 +か×か
ユーザー HimatsubushinHimatsubushin
提出日時 2022-02-09 16:01:04
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,077 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 102,236 KB
実行使用メモリ 33,928 KB
最終ジャッジ日時 2023-09-07 01:15:00
合計ジャッジ時間 9,301 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
23,752 KB
testcase_01 AC 59 ms
23,692 KB
testcase_02 AC 58 ms
21,704 KB
testcase_03 AC 138 ms
27,904 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 bool calc(int n, int a, int[] d, int l, int s, string o)
        {
            if (n == l)
            {
                if (s == a)
                {
                    Console.WriteLine(o);
                    return true;
                }
            }
            else
            {
                if (s + d[l] <= a)
                {
                    if (calc(n, a, d, l + 1, s + d[l], o + "+"))
                        return true;
                }
                if (s * d[l] <= a)
                {
                    if (calc(n, a, d, l + 1, s * d[l], o + "*"))
                        return true;
                }
            }
            return false;
        }
    }
}
0