結果

問題 No.1765 While Shining
ユーザー bluemeganebluemegane
提出日時 2021-11-27 10:07:34
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,675 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 111,348 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-06-30 01:37:57
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
17,920 KB
testcase_01 AC 21 ms
17,664 KB
testcase_02 AC 22 ms
18,048 KB
testcase_03 AC 21 ms
17,792 KB
testcase_04 WA -
testcase_05 AC 25 ms
18,432 KB
testcase_06 AC 25 ms
18,432 KB
testcase_07 AC 24 ms
18,176 KB
testcase_08 AC 25 ms
18,560 KB
testcase_09 AC 52 ms
24,832 KB
testcase_10 AC 73 ms
33,152 KB
testcase_11 AC 62 ms
27,392 KB
testcase_12 AC 72 ms
32,640 KB
testcase_13 AC 59 ms
27,008 KB
testcase_14 AC 75 ms
33,280 KB
testcase_15 AC 76 ms
33,408 KB
testcase_16 AC 79 ms
33,280 KB
testcase_17 AC 78 ms
33,536 KB
testcase_18 AC 78 ms
33,280 KB
testcase_19 AC 76 ms
33,408 KB
testcase_20 AC 79 ms
33,408 KB
testcase_21 AC 77 ms
33,408 KB
testcase_22 WA -
testcase_23 AC 79 ms
33,280 KB
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n,a);    
    }
    static void getAns(int n,int[]a)
    {
        var ans = new List<long>();
        var now = a[0];
        var flag = now== 1? true: false;
        var tc = flag ? 1 : 0;
        for (int i = 1; i < n; i++)
        {
            if (flag)
            {
                if (now == 1)
                {
                    if (a[i] == 0) { tc++;  now = 0; }
                    else
                    {
                        ans.Add(tc);
                        tc = 1;
                        flag = true;
                        now = 1;
                    }
                }
                else
                {
                    if (a[i] == 1) { tc++; now = 1; }
                    else
                    {
                        ans.Add(tc);
                        tc = 0;
                        flag = false;
                        now = 0;
                    }
                }
            }
            else
            {
                if (a[i] == 1) { flag = true; tc++;  now = 1; }
                else now = 0;
            }
        }
        if (flag && now == 1) ans.Add(tc - 1);
        if (flag && now == 0) ans.Add(tc );
        var res = 0L;
        foreach(var x in ans)
        {
            if (x % 2 == 0) res += (x / 2) * (x / 2 + 1);
            else res += (x + 1) * (x + 1) / 4L;
        }
        Console.WriteLine(res);
    }
}
0