Submission #2226609


Source Code Expand

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;

using static System.Console;
using static AtCoder.Util;
using static AtCoder.Cin;

namespace AtCoder {
    class Program {

// 9 abcabcabc

        static void Main() {
            var n = ReadInt();
            var s = ReadString();
            if (Regex.IsMatch(s, @"^(b|c(abc)*a|bc(abc)*a|(abc)*)$")
                && n % 2 == 1
            ) {
                WriteLine((n - 1) / 2);
            } else {
                WriteLine(-1);
            }
        }
    }
}
/* ***************** Following Contents are my common library ******** */

namespace AtCoder {
    static class Util {
        public static T debug<T>(this T value) {
            Console.Error.WriteLine($"debug:{value}");
            return value;
        }

        public static long ToLong(this String s) => long.Parse(s);
        public static long ToLong(this char c) => c - '0';
        public static int ToInt(this String s) => int.Parse(s);
        public static int ToInt(this char c) => c - '0';
        public static void Times(this int n, Action action) {
            for (int i = 0; i < n; i++) action();
        }
        public static void Times(this long n, Action action) {
            for (long i = 0; i < n; i++) action();
        }
        public static void Call<T>(this T t, Action<T> action) => action(t);
        public static bool In<T>(this T t, IEnumerable<T> range) =>
            range.Contains(t);
        public static void WriteLine<T>(this T t) => Console.WriteLine(t);
        public static T Call<S, T>(this S s, Func<S, T> func) => func(s);
        public static void Each<T>(this IEnumerable<T> e, Action<T> action) {
            foreach (var v in e) action(v);
        }

        public static VectorInt2 ReadVectorInt2() => 
            new VectorInt2(ReadInt(), ReadInt());

        public static string ReplaceX(this string input, string pattern, string replace) =>
            Regex.Replace(input, pattern, replace);

        public static IEnumerable<int> Range(int i, int j) => Enumerable.Range(i, j);
        public static void Swap<T>(this IList<T> enumerable, int i, int j) {
            var buf = enumerable[i];
            enumerable[i] = enumerable[j];
            enumerable[j] = buf;

        }
        public static void ReverseRange<T>(this IList<T> enumerable, int i, int j) {
            int half = (j - i) / 2;
            for (int k = 0; k <= half; k++) enumerable.Swap(i + k, j - k);
        }
        
        public static bool isEmpty<T>(this IEnumerable<T> enumerable) => !enumerable.Any();
    }

    static class Cin {
        private static Queue<string> tokens;
        static Cin () {
            string line;
            tokens = new Queue<string> ();
            while ((line = Console.ReadLine ()) != null) {
                foreach (var token in line.Split (' ')) {
                    tokens.Enqueue (token);
                }
            }
        }

        static public int ReadInt() => int.Parse(tokens.Dequeue());
        static public IEnumerable<int> ReadInt(long n) {
            var list = new List<int>();
            for (int i = 0; i < n; i++) list.Add(ReadInt());
            return list;
        }
        static public long ReadLong() => long.Parse(tokens.Dequeue());
        static public IEnumerable<long> ReadLong(long n) {
            for (int i = 0; i < n; i++) yield return ReadLong();
        }
        static public string ReadString() => tokens.Dequeue();
    }

    struct VectorInt2 {
        public int X { get; set; }
        public int Y { get; set; }

        public VectorInt2(int x, int y) {
            X = x; Y = y;
        }

        static public VectorInt2 operator+ (VectorInt2 v1, VectorInt2 v2) =>
            new VectorInt2(v1.X + v2.X, v1.Y + v2.Y);
        static public VectorInt2 operator- (VectorInt2 v1, VectorInt2 v2) =>
            new VectorInt2(v1.X - v2.X, v1.Y - v2.Y);
        static public VectorInt2 operator* (VectorInt2 v1, VectorInt2 v2) =>
            new VectorInt2(v1.X * v2.X, v1.Y * v2.Y);
        static public VectorInt2 operator* (VectorInt2 v1, int i) =>
            new VectorInt2(v1.X * i, v1.Y * i);
        static public VectorInt2 operator* (int i, VectorInt2 v2) =>
            new VectorInt2(i * v2.X, i * v2.Y);
        static public VectorInt2 operator/ (VectorInt2 v1, int i) =>
            new VectorInt2(v1.X / i, v1.Y / i);
    }
}

Submission Info

Submission Time
Task B - 手芸王
User yuchiki
Language C# (Mono 4.6.2.0)
Score 0
Code Size 4590 Byte
Status WA
Exec Time 60 ms
Memory 16332 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
AC × 3
WA × 1
AC × 25
WA × 4
Set Name Test Cases
Sample subtask0-sample01.txt, subtask0-sample02.txt, subtask0-sample03.txt, subtask0-sample04.txt
All subtask0-sample01.txt, subtask0-sample02.txt, subtask0-sample03.txt, subtask0-sample04.txt, subtask1-01.txt, subtask1-02.txt, subtask1-03.txt, subtask1-04.txt, subtask1-05.txt, subtask1-06.txt, subtask1-07.txt, subtask1-08.txt, subtask1-09.txt, subtask1-10.txt, subtask1-11.txt, subtask1-12.txt, subtask1-13.txt, subtask1-14.txt, subtask1-15.txt, subtask1-16.txt, subtask1-17.txt, subtask1-18.txt, subtask1-19.txt, subtask1-20.txt, subtask1-21.txt, subtask1-22.txt, subtask1-23.txt, subtask1-24.txt, subtask1-25.txt
Case Name Status Exec Time Memory
subtask0-sample01.txt AC 60 ms 14296 KB
subtask0-sample02.txt AC 57 ms 14168 KB
subtask0-sample03.txt AC 58 ms 16216 KB
subtask0-sample04.txt WA 56 ms 12120 KB
subtask1-01.txt AC 57 ms 16216 KB
subtask1-02.txt AC 57 ms 12120 KB
subtask1-03.txt AC 57 ms 14168 KB
subtask1-04.txt AC 57 ms 12120 KB
subtask1-05.txt AC 57 ms 12120 KB
subtask1-06.txt AC 57 ms 16216 KB
subtask1-07.txt AC 57 ms 14168 KB
subtask1-08.txt AC 57 ms 14168 KB
subtask1-09.txt AC 57 ms 14168 KB
subtask1-10.txt WA 57 ms 16216 KB
subtask1-11.txt AC 57 ms 14168 KB
subtask1-12.txt AC 56 ms 12120 KB
subtask1-13.txt AC 57 ms 14168 KB
subtask1-14.txt AC 56 ms 14284 KB
subtask1-15.txt AC 56 ms 12120 KB
subtask1-16.txt WA 56 ms 12236 KB
subtask1-17.txt AC 57 ms 14284 KB
subtask1-18.txt AC 57 ms 14284 KB
subtask1-19.txt AC 57 ms 14168 KB
subtask1-20.txt AC 57 ms 16216 KB
subtask1-21.txt AC 57 ms 14168 KB
subtask1-22.txt WA 56 ms 12120 KB
subtask1-23.txt AC 56 ms 14284 KB
subtask1-24.txt AC 57 ms 16216 KB
subtask1-25.txt AC 57 ms 16332 KB