結果

問題 No.91 赤、緑、青の石
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-08-01 14:15:12
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 569 ms / 5,000 ms
コード長 895 bytes
コンパイル時間 11,335 ms
コンパイル使用メモリ 168,276 KB
実行使用メモリ 208,304 KB
最終ジャッジ日時 2024-10-11 05:57:45
合計ジャッジ時間 19,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 403 ms
54,784 KB
testcase_01 AC 302 ms
54,528 KB
testcase_02 AC 220 ms
54,656 KB
testcase_03 AC 331 ms
54,528 KB
testcase_04 AC 207 ms
54,784 KB
testcase_05 AC 386 ms
54,784 KB
testcase_06 AC 106 ms
40,960 KB
testcase_07 AC 58 ms
29,824 KB
testcase_08 AC 62 ms
30,720 KB
testcase_09 AC 62 ms
30,464 KB
testcase_10 AC 61 ms
30,464 KB
testcase_11 AC 166 ms
54,912 KB
testcase_12 AC 348 ms
54,656 KB
testcase_13 AC 366 ms
54,656 KB
testcase_14 AC 280 ms
54,656 KB
testcase_15 AC 392 ms
54,784 KB
testcase_16 AC 58 ms
30,080 KB
testcase_17 AC 58 ms
30,208 KB
testcase_18 AC 59 ms
30,208 KB
testcase_19 AC 62 ms
30,464 KB
testcase_20 AC 62 ms
30,464 KB
testcase_21 AC 62 ms
30,720 KB
testcase_22 AC 58 ms
29,952 KB
testcase_23 AC 62 ms
30,560 KB
testcase_24 AC 62 ms
30,720 KB
testcase_25 AC 569 ms
54,528 KB
testcase_26 AC 562 ms
54,644 KB
testcase_27 AC 62 ms
30,592 KB
testcase_28 AC 64 ms
31,104 KB
testcase_29 AC 69 ms
32,480 KB
testcase_30 AC 419 ms
54,528 KB
testcase_31 AC 525 ms
208,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

namespace yukicoder
{
    public class Program
    {
        public static void Main()
        {
            var s = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray();
            var sum = 0;
            sum = Make(s, sum);
            Console.WriteLine(sum);
        }
        public static int Make(int[] s,int sum)
        {
            Array.Sort(s);
            sum += s[0];
            s = s.Select(x => x - s[0]).ToArray();
            s = new int[2] { s[1], s[2] };
            while (s.All(x => x > 0) && s.Max() >= 3)
            {
                Array.Sort(s);
                s[0]--;
                s[1] -= 3;
                sum++;
            }
            while (s[1] > 4)
            {
                s[1] -= 5;
                sum++;
            }
            return sum;
        }
    }
}
0