結果

問題 No.929 よくあるボールを移動するやつ
ユーザー bluemeganebluemegane
提出日時 2021-04-24 17:15:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 849 ms
コンパイル使用メモリ 111,412 KB
実行使用メモリ 33,636 KB
最終ジャッジ日時 2024-07-04 09:07:49
合計ジャッジ時間 2,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,680 KB
testcase_01 AC 28 ms
27,008 KB
testcase_02 AC 27 ms
24,932 KB
testcase_03 AC 29 ms
26,748 KB
testcase_04 AC 28 ms
26,592 KB
testcase_05 AC 28 ms
24,680 KB
testcase_06 AC 32 ms
25,180 KB
testcase_07 AC 43 ms
28,444 KB
testcase_08 AC 58 ms
30,456 KB
testcase_09 AC 58 ms
32,484 KB
testcase_10 AC 58 ms
33,528 KB
testcase_11 AC 57 ms
31,484 KB
testcase_12 AC 57 ms
31,496 KB
testcase_13 AC 57 ms
33,516 KB
testcase_14 AC 57 ms
31,724 KB
testcase_15 AC 58 ms
33,636 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
using static System.Math;
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 b0 = new List<int>();
        var b1 = new List<int>();
        for (int i = 0; i < n; i++)
        {
            if (a[i] == 0) b0.Add(i);
            else
            {
                for (int j = 0; j < a[i] - 1; j++) b1.Add(i);
            }
        }
        var bL = b0.Count();
        var count = 0L;
        for (int i = 0; i < bL; i++) count += Abs(b0[i] - b1[i]);
        Console.WriteLine(count);
    }
}
0