結果

問題 No.1650 Moving Coins
ユーザー bluemeganebluemegane
提出日時 2021-08-21 07:13:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 667 ms / 2,000 ms
コード長 1,567 bytes
コンパイル時間 1,831 ms
コンパイル使用メモリ 106,240 KB
実行使用メモリ 56,436 KB
最終ジャッジ日時 2024-10-14 15:50:20
合計ジャッジ時間 18,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
18,816 KB
testcase_01 AC 24 ms
18,816 KB
testcase_02 AC 24 ms
18,816 KB
testcase_03 AC 460 ms
22,784 KB
testcase_04 AC 359 ms
22,656 KB
testcase_05 AC 419 ms
22,784 KB
testcase_06 AC 500 ms
22,912 KB
testcase_07 AC 474 ms
22,912 KB
testcase_08 AC 577 ms
40,320 KB
testcase_09 AC 611 ms
39,936 KB
testcase_10 AC 572 ms
41,092 KB
testcase_11 AC 574 ms
41,472 KB
testcase_12 AC 538 ms
35,968 KB
testcase_13 AC 544 ms
36,352 KB
testcase_14 AC 595 ms
39,936 KB
testcase_15 AC 567 ms
32,768 KB
testcase_16 AC 583 ms
42,880 KB
testcase_17 AC 545 ms
43,520 KB
testcase_18 AC 587 ms
47,508 KB
testcase_19 AC 637 ms
54,936 KB
testcase_20 AC 664 ms
56,436 KB
testcase_21 AC 628 ms
56,172 KB
testcase_22 AC 650 ms
56,356 KB
testcase_23 AC 667 ms
56,236 KB
testcase_24 AC 495 ms
22,784 KB
testcase_25 AC 491 ms
22,656 KB
testcase_26 AC 149 ms
48,068 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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();
        for (int i = c - 1; i >= 0; i--)
        {
            var jmax = asb[i].b - asb[i].a;
            for (int j = 0; j < jmax; j++) Console.WriteLine("{0} R", asb[i].id);
        }
    }
    static void printAgb(List<P> agb)
    {
        var c = agb.Count();
        for (int i = 0; i < c; i++)
        {
            var jmax = agb[i].a - agb[i].b;
            for (int j = 0; j < jmax; j++) Console.WriteLine("{0} L", agb[i].id);
        }
    }
    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);
        printAgb(agb);
        printAsb(asb);
    }
}
0