結果

問題 No.265 数学のテスト
ユーザー りあんりあん
提出日時 2015-08-08 00:10:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 4,013 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 107,784 KB
実行使用メモリ 37,336 KB
最終ジャッジ日時 2023-08-16 02:03:18
合計ジャッジ時間 5,890 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
27,508 KB
testcase_01 AC 63 ms
31,652 KB
testcase_02 AC 70 ms
36,344 KB
testcase_03 AC 69 ms
32,436 KB
testcase_04 AC 70 ms
34,676 KB
testcase_05 AC 70 ms
34,308 KB
testcase_06 AC 67 ms
35,564 KB
testcase_07 AC 66 ms
35,528 KB
testcase_08 AC 66 ms
34,284 KB
testcase_09 AC 70 ms
36,692 KB
testcase_10 AC 68 ms
36,224 KB
testcase_11 AC 68 ms
34,812 KB
testcase_12 AC 68 ms
37,288 KB
testcase_13 AC 62 ms
31,412 KB
testcase_14 AC 61 ms
31,660 KB
testcase_15 AC 65 ms
35,432 KB
testcase_16 AC 70 ms
32,060 KB
testcase_17 AC 54 ms
22,960 KB
testcase_18 AC 62 ms
31,372 KB
testcase_19 AC 67 ms
33,224 KB
testcase_20 AC 60 ms
29,312 KB
testcase_21 AC 62 ms
31,332 KB
testcase_22 AC 69 ms
37,336 KB
testcase_23 AC 54 ms
22,976 KB
testcase_24 AC 61 ms
29,372 KB
testcase_25 AC 67 ms
35,580 KB
testcase_26 AC 66 ms
34,536 KB
testcase_27 AC 63 ms
31,412 KB
testcase_28 AC 70 ms
36,180 KB
testcase_29 AC 68 ms
35,304 KB
testcase_30 AC 62 ms
31,528 KB
testcase_31 AC 60 ms
31,364 KB
testcase_32 AC 60 ms
31,420 KB
testcase_33 AC 63 ms
31,348 KB
testcase_34 AC 60 ms
31,408 KB
testcase_35 AC 61 ms
27,316 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.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;
            long[][] a = new long[100000][];
            for (int i = 0; i < 100000; i++)
                a[i] = new long[d + 1];

            string s = sc.Str;
            int jisu = 0, kesu = 0, dflag = 0;
            foreach (var item in s)
            {
                switch (item)
                {
                    case 'x':
                        ++jisu;
                        if (kesu == 0)
                            kesu = 1;
                        break;
                    case '{':
                        ++dflag;
                        break;
                    case '}':
                        a[dflag][jisu] += kesu;
                        jisu = 0;
                        kesu = 0;
                        a[dflag - 1] = sum(a[dflag - 1], bibun(a[dflag]));
                        a[dflag] = new long[d + 1];
                        --dflag;
                        break;
                    case '+':
                        a[dflag][jisu] += kesu;
                        jisu = 0;
                        kesu = 0;
                        break;
                    case 'd':
                    case '*':
                        break;
                    default:
                        kesu = item - '0';
                        break;
                }
            }
            a[0][jisu] += kesu;

            sw.WriteLine(String.Join(" ", a[0]));
            sw.Flush();
        }
        static long[] bibun(long[] a)
        {
            long[] ret = new long[a.Length];
            for (int i = 1; i < a.Length; i++)
                ret[i - 1] = a[i] * i;

            return ret;
        }
        static long[] sum(long[] a, long[] b)
        {
            long[] ret = new long[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]; }
    }
}
0