結果

問題 No.805 UMG
ユーザー chika0707chika0707
提出日時 2019-03-22 22:20:08
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,588 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 115,104 KB
実行使用メモリ 26,292 KB
最終ジャッジ日時 2024-11-18 13:26:31
合計ジャッジ時間 2,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,884 KB
testcase_01 AC 24 ms
23,964 KB
testcase_02 AC 24 ms
23,876 KB
testcase_03 AC 26 ms
23,872 KB
testcase_04 WA -
testcase_05 AC 25 ms
23,868 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 26 ms
25,760 KB
testcase_09 AC 26 ms
24,124 KB
testcase_10 AC 25 ms
23,840 KB
testcase_11 AC 25 ms
23,996 KB
testcase_12 AC 27 ms
23,704 KB
testcase_13 WA -
testcase_14 AC 25 ms
24,236 KB
testcase_15 AC 26 ms
25,880 KB
testcase_16 WA -
testcase_17 AC 26 ms
21,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 27 ms
26,128 KB
testcase_21 AC 26 ms
26,132 KB
testcase_22 WA -
testcase_23 AC 41 ms
21,940 KB
testcase_24 WA -
testcase_25 AC 41 ms
24,252 KB
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 static Input;

public class Prog
{
    private const int INF = 1000000007;
    private const long INFINITY = 9223372036854775807;
    public static void Main()
    {
        int N = NextInt();
        string S = NextString();
        long ans = 0;
        for (int i = 0; i < N; i++)
        {
            if (S[i] == 'M')
            {
                int min = Math.Min(i, N - i);
                for (int j = 1; j < min; j++) {
                    if (S[i - j] == 'U' && S[i + j] == 'G') ans++;
                }
            }
        }
        Console.WriteLine(ans);
    }
}

public class Input
{
    private static Queue<string> q = new Queue<string>();
    private static void Confirm() { if (q.Count == 0) foreach (var s in Console.ReadLine().Split(' ')) q.Enqueue(s); }
    public static int NextInt() { Confirm(); return int.Parse(q.Dequeue()); }
    public static long NextLong() { Confirm(); return long.Parse(q.Dequeue()); }
    public static string NextString() { Confirm(); return q.Dequeue(); }
    public static double NextDouble() { Confirm(); return double.Parse(q.Dequeue()); }
    public static int[] LineInt() { return Console.ReadLine().Split(' ').Select(int.Parse).ToArray(); }
    public static long[] LineLong() { return Console.ReadLine().Split(' ').Select(long.Parse).ToArray(); }
    public static string[] LineString() { return Console.ReadLine().Split(' ').ToArray(); }
    public static double[] LineDouble() { return Console.ReadLine().Split(' ').Select(double.Parse).ToArray(); }
}
0