結果

問題 No.909 たぴの配置
ユーザー tomomo2b2tomomo2b2
提出日時 2019-10-18 21:34:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 261 ms / 3,000 ms
コード長 918 bytes
コンパイル時間 4,875 ms
コンパイル使用メモリ 114,392 KB
実行使用メモリ 62,832 KB
最終ジャッジ日時 2024-06-25 15:07:56
合計ジャッジ時間 6,396 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
25,392 KB
testcase_01 AC 33 ms
25,452 KB
testcase_02 AC 32 ms
27,396 KB
testcase_03 AC 33 ms
25,452 KB
testcase_04 AC 32 ms
25,196 KB
testcase_05 AC 241 ms
57,556 KB
testcase_06 AC 254 ms
62,832 KB
testcase_07 AC 257 ms
54,088 KB
testcase_08 AC 254 ms
59,260 KB
testcase_09 AC 261 ms
58,980 KB
testcase_10 AC 245 ms
53,904 KB
testcase_11 AC 239 ms
55,500 KB
testcase_12 AC 239 ms
58,936 KB
testcase_13 AC 246 ms
59,816 KB
testcase_14 AC 243 ms
55,976 KB
testcase_15 AC 241 ms
55,640 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;
using System.Collections.Generic;
using System.IO;

class MyClass
{
    public static void Solve()
    {
        var N = int.Parse(Console.ReadLine());
        var X = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var Y = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var min = Enumerable.Range(0, N).Select(i => X[i] + Y[i]).Min();
        Console.WriteLine(min);
        var pos = new int[N + 2];
        pos[0] = 0;
        pos[N + 1] = min;
        for (int i = 0; i < N; i++)
        {
            pos[i + 1] = Math.Min(X[i], min);
        }
        foreach (var item in pos)
        {
            Console.WriteLine(item);
        }
    }

    public static void Main()
    {
        var sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
        Console.SetOut(sw);
        Solve();
        Console.Out.Flush();
    }
}
0