結果

問題 No.909 たぴの配置
ユーザー bluemeganebluemegane
提出日時 2021-10-08 07:33:43
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 888 bytes
コンパイル時間 2,028 ms
コンパイル使用メモリ 110,924 KB
実行使用メモリ 61,840 KB
最終ジャッジ日時 2024-07-23 03:16:48
合計ジャッジ時間 8,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,204 KB
testcase_01 AC 29 ms
25,204 KB
testcase_02 AC 29 ms
26,844 KB
testcase_03 AC 29 ms
25,052 KB
testcase_04 WA -
testcase_05 AC 209 ms
58,764 KB
testcase_06 AC 219 ms
57,816 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 210 ms
60,524 KB
testcase_13 AC 213 ms
58,484 KB
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var x = Array.ConvertAll(line, int.Parse);
        line = Console.ReadLine().Trim().Split(' ');
        var y = Array.ConvertAll(line, int.Parse);
        getAns(n, x, y);
    }
    static void getAns(int n, int[] x, int[] y)
    {
        var xy = new int[n];
        for (int i = 0; i < n; i++) xy[i] = x[i] + y[i];
        var xymin = xy.Min();
        var ans = new int[n];
        if (xymin == 0) goto next;
        for (int i = 0; i < n; i++)
        {
            ans[i] = x[i] * xymin / xy[i];
        }
    next:;
        Console.WriteLine(xymin);
        Console.WriteLine(0);
        Console.WriteLine(string.Join("\n", ans));
        Console.WriteLine(xymin);
    }
}
0