結果

問題 No.1650 Moving Coins
ユーザー bluemeganebluemegane
提出日時 2021-08-21 07:18:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 1,804 bytes
コンパイル時間 3,304 ms
コンパイル使用メモリ 109,572 KB
実行使用メモリ 69,320 KB
最終ジャッジ日時 2024-10-14 15:55:57
合計ジャッジ時間 10,732 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,812 KB
testcase_01 AC 25 ms
24,560 KB
testcase_02 AC 26 ms
24,780 KB
testcase_03 AC 73 ms
31,508 KB
testcase_04 AC 63 ms
32,048 KB
testcase_05 AC 72 ms
31,020 KB
testcase_06 AC 77 ms
33,428 KB
testcase_07 AC 76 ms
31,792 KB
testcase_08 AC 167 ms
53,172 KB
testcase_09 AC 165 ms
49,820 KB
testcase_10 AC 171 ms
53,816 KB
testcase_11 AC 173 ms
51,996 KB
testcase_12 AC 136 ms
46,680 KB
testcase_13 AC 140 ms
47,664 KB
testcase_14 AC 166 ms
51,948 KB
testcase_15 AC 132 ms
44,344 KB
testcase_16 AC 178 ms
55,264 KB
testcase_17 AC 177 ms
55,204 KB
testcase_18 AC 199 ms
58,324 KB
testcase_19 AC 246 ms
63,252 KB
testcase_20 AC 242 ms
67,264 KB
testcase_21 AC 246 ms
69,320 KB
testcase_22 AC 250 ms
66,800 KB
testcase_23 AC 239 ms
67,056 KB
testcase_24 AC 78 ms
32,664 KB
testcase_25 AC 76 ms
30,736 KB
testcase_26 AC 151 ms
56,100 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Text;
using static System.Math;
using System.Linq;
using System.Collections.Generic;
using System;

public class P
{
    public int id { get; set; }
    public int a { get; set; }
    public int b { get; set; }
}

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);
        line = Console.ReadLine().Trim().Split(' ');
        var b = Array.ConvertAll(line, int.Parse);
        getAns(n, a, b);
    }
    static void printAsb(List<P> asb)
    {
        var c = asb.Count();
        var sb = new StringBuilder();
        for (int i = c - 1; i >= 0; i--)
        {
            var jmax = asb[i].b - asb[i].a;
            for (int j = 0; j < jmax; j++)
                sb.Append(string.Format("{0} R", asb[i].id));
        }
        Console.Write(sb);
    }
    static void printAgb(List<P> agb)
    {
        var c = agb.Count();
        var sb = new StringBuilder();
        for (int i = 0; i < c; i++)
        {
            var jmax = agb[i].a - agb[i].b;
            for (int j = 0; j < jmax; j++)
                sb.Append(string.Format("{0} L", agb[i].id));
        }
        Console.Write(sb);
    }
    static void getAns(int n, int[] a, int[] b)
    {
        var asb = new List<P>();
        var agb = new List<P>();
        var s = 0L;
        for (int i = 0; i < n; i++)
        {
            s += Abs(a[i] - b[i]);
            if (a[i] < b[i]) asb.Add(new P { id = i + 1, a = a[i], b = b[i] });
            else if (a[i] > b[i]) agb.Add(new P { id = i + 1, a = a[i], b = b[i] });
        }
        Console.WriteLine(s);
        if (agb.Count() > 0) printAgb(agb);
        if (asb.Count() > 0) printAsb(asb);
    }
}
0