結果

問題 No.909 たぴの配置
ユーザー iwkjoseciwkjosec
提出日時 2019-10-18 21:37:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,006 ms / 3,000 ms
コード長 826 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 104,704 KB
実行使用メモリ 55,432 KB
最終ジャッジ日時 2024-06-25 15:12:40
合計ジャッジ時間 14,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
18,944 KB
testcase_01 AC 28 ms
19,072 KB
testcase_02 AC 27 ms
18,816 KB
testcase_03 AC 27 ms
18,816 KB
testcase_04 AC 28 ms
19,072 KB
testcase_05 AC 942 ms
54,032 KB
testcase_06 AC 975 ms
55,432 KB
testcase_07 AC 920 ms
50,184 KB
testcase_08 AC 984 ms
53,788 KB
testcase_09 AC 1,006 ms
55,068 KB
testcase_10 AC 935 ms
50,136 KB
testcase_11 AC 900 ms
49,780 KB
testcase_12 AC 954 ms
53,252 KB
testcase_13 AC 1,001 ms
53,852 KB
testcase_14 AC 971 ms
50,304 KB
testcase_15 AC 937 ms
49,808 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.Collections.Generic;
using System.Linq;
using System.Numerics;
using static System.Console;
using static System.Math;

class Program
{
    static void Main()
    {
        var N = int.Parse(ReadLine());
        var X = ReadLine().Split().Select(int.Parse).ToArray();
        var Y = ReadLine().Split().Select(int.Parse).ToArray();
        var m = int.MaxValue;
        var k = new int[N];
        for (int i = 0; i < N; i++)
        {
            var d = X[i] + Y[i];
            if (m > d)
            {
                m = d;
            }
        }
        for (int i = 0; i < N; i++)
        {
            k[i] = Min(X[i], m);
        }
        WriteLine(m);
        WriteLine(0);
        for (int i = 0; i < N; i++)
        {
            WriteLine(k[i]);
        }
        WriteLine(m);
    }
}
0