結果

問題 No.9 モンスターのレベル上げ
ユーザー HimatsubushinHimatsubushin
提出日時 2021-01-21 13:32:37
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,362 bytes
コンパイル時間 4,049 ms
コンパイル使用メモリ 105,596 KB
実行使用メモリ 23,592 KB
最終ジャッジ日時 2023-08-26 00:46:17
合計ジャッジ時間 10,704 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
21,688 KB
testcase_01 AC 65 ms
23,592 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace No
{
    class MainClass
    {
        static int n;
        static int[] a;
        static int[] b;

        public static void Main(string[] args)
        {
            n = int.Parse(Console.ReadLine());
            a = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray();
            b = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray();

            int max_battle_number = n;

            for (int start = 0; start < n; start++)
            {
                int[] level = new int[n];
                int pos = start, count = 0, max = 0;

                for (int i = 0; i < n; i++)
                    level[i] = a[i] * 1000;

                while (true)
                {
                    Array.Sort(level);
                    level[0] += (b[pos] / 2) * 1000 + 1;

                    pos++;
                    if (pos >= n)
                        pos = 0;

                    count++;
                    if (count == n)
                        break;
                }

                foreach (int num in level)
                    if (max < num % 1000)
                        max = num % 1000;

                if (max_battle_number > max)
                    max_battle_number = max;
            }

            Console.WriteLine(max_battle_number);
        }
    }
}
0