結果
問題 | No.10 +か×か |
ユーザー | YoshiRyu |
提出日時 | 2016-11-03 03:07:47 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,418 bytes |
コンパイル時間 | 1,200 ms |
コンパイル使用メモリ | 116,016 KB |
実行使用メモリ | 50,784 KB |
最終ジャッジ日時 | 2024-11-25 01:57:05 |
合計ジャッジ時間 | 14,118 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
50,444 KB |
testcase_01 | AC | 26 ms
27,068 KB |
testcase_02 | AC | 26 ms
27,056 KB |
testcase_03 | AC | 39 ms
27,056 KB |
testcase_04 | TLE | - |
testcase_05 | WA | - |
testcase_06 | AC | 35 ms
24,880 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 26 ms
22,980 KB |
testcase_09 | AC | 26 ms
27,184 KB |
testcase_10 | AC | 26 ms
25,096 KB |
testcase_11 | AC | 25 ms
50,784 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.IO; using System.Linq; public class YukiCoder { public static void Solve() { var N = MyConsole.Int(); var Total = MyConsole.Int(); var A = MyConsole.IntSplit(); bool found = false; Func<char[],int,int, bool> act = null; act = ( Formula, Base, Index ) => { if (found) return true; if (Base < Total && Index < N) { Formula[Index - 1] = '+'; if (act( Formula, Base + A[Index], Index + 1 )) return true; Formula[Index - 1] = '*'; if (act( Formula, Base * A[Index], Index + 1 )) return true; } else if (Base == Total && Index == N) { MyConsole.wLine( new string( System.Linq.Enumerable.ToArray( Formula ) ) ); found = true; } return false; }; // 演算の実行 act( new char[N - 1], A[0], 1 ); } public static void Main() { MyConsole.Read(); Solve(); MyConsole.Finish(); } } public static class MyConsole { private static List<string> ReadedLine = new List<string>(); private static char[] buf = new char[1024]; private static int i; public static void Read() { string sr = Console.In.ReadToEnd(); ReadedLine = sr.Split( new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries ).ToList(); Console.SetOut( new StreamWriter( Console.OpenStandardOutput() ) { AutoFlush = false } ); } public static string String() { return ReadedLine[i++]; } public static string[] StringSplit() { return ReadedLine[i++].Split( new[] { ' ' } ); } public static int Int() { return int.Parse( ReadedLine[i++] ); } public static int[] IntSplit() { string[] strs = StringSplit(); int[] ret = new int[strs.Length]; for (int i = 0 ; i < strs.Length ; i++) { ret[i] = int.Parse( strs[i] ); } return ret; } public static long Long() { return long.Parse( ReadedLine[i++] ); } public static double Double() { return double.Parse( ReadedLine[i++] ); } public static void wLine( string output = null ) { Console.WriteLine( output ); } public static void Finish() { Console.Out.Flush(); } }