結果
問題 | No.265 数学のテスト |
ユーザー | りあん |
提出日時 | 2015-08-07 23:15:42 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 4,147 bytes |
コンパイル時間 | 2,054 ms |
コンパイル使用メモリ | 116,108 KB |
実行使用メモリ | 26,260 KB |
最終ジャッジ日時 | 2024-07-18 05:19:22 |
合計ジャッジ時間 | 2,978 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 24 ms
26,032 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 24 ms
26,036 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 22 ms
23,964 KB |
testcase_19 | AC | 23 ms
23,724 KB |
testcase_20 | RE | - |
testcase_21 | AC | 25 ms
26,032 KB |
testcase_22 | RE | - |
testcase_23 | AC | 25 ms
23,968 KB |
testcase_24 | AC | 24 ms
26,132 KB |
testcase_25 | RE | - |
testcase_26 | AC | 23 ms
24,088 KB |
testcase_27 | AC | 23 ms
23,836 KB |
testcase_28 | RE | - |
testcase_29 | AC | 23 ms
25,908 KB |
testcase_30 | RE | - |
testcase_31 | AC | 22 ms
23,860 KB |
testcase_32 | AC | 22 ms
25,752 KB |
testcase_33 | AC | 23 ms
26,260 KB |
testcase_34 | AC | 23 ms
23,712 KB |
testcase_35 | RE | - |
コンパイルメッセージ
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.Linq; using System.IO; using System.Text; using System.Numerics; namespace Solver { class Program { const int M = 1000000007; const double eps = 10e-9; static void Main() { var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }; var sc = new Scan(); int n = sc.Int; int d = sc.Int; int[][] a = new int[d + 1][]; for (int i = 0; i <= d; i++) a[i] = new int[d + 1]; string s = sc.Str; int jisu = 0, kesu = 0, dflag = 0, sk = 0; foreach (var item in s) { switch (item) { case 'x': ++jisu; if (kesu == 0) kesu = 1; break; case '{': ++dflag; break; case '}': if (kesu > 0) { a[dflag][jisu] += kesu; jisu = 0; kesu = 0; } a[dflag - 1] = sum(a[dflag - 1], bibun(a[dflag])); a[dflag] = new int[d + 1]; --dflag; break; case '+': a[dflag][jisu] += kesu; jisu = 0; kesu = 0; break; case 'd': case '*': break; default: kesu = item - '0'; break; } } if (kesu > 0) a[0][jisu] += kesu; sw.WriteLine(String.Join(" ", a[0])); sw.Flush(); } static int[] bibun(int[] a) { int[] ret = new int[a.Length]; for (int i = 1; i < a.Length; i++) ret[i - 1] = a[i] * i; return ret; } static int[] sum(int[] a, int[] b) { int[] ret = new int[a.Length]; for (int i = 0; i < a.Length; i++) ret[i] = a[i] + b[i]; return ret; } } class Scan { public int Int { get { return int.Parse(Console.ReadLine().Trim()); } } public long Long { get { return long.Parse(Console.ReadLine().Trim()); } } public string Str { get { return Console.ReadLine().Trim(); } } public int[] IntArr { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray(); } } public long[] LongArr { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray(); } } public double[] DoubleArr { get { return Console.ReadLine().Split().Select(double.Parse).ToArray(); } } public string[] StrArr { get { return Console.ReadLine().Trim().Split(); } } public List<int> IntList { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToList(); } } public List<long> LongList { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToList(); } } public void Multi(out int a, out int b) { var arr = IntArr; a = arr[0]; b = arr[1]; } public void Multi(out int a, out int b, out int c) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; } public void Multi(out int a, out int b, out int c, out int d) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; d = arr[3]; } public void Multi(out int a, out string b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1]; } public void Multi(out int a, out char b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1][0]; } public void Multi(out long a, out long b) { var arr = LongArr; a = arr[0]; b = arr[1]; } public void Multi(out string a, out string b) { var arr = StrArr; a = arr[0]; b = arr[1]; } } }