結果
問題 | No.91 赤、緑、青の石 |
ユーザー | 抹茶アイス |
提出日時 | 2023-08-01 11:57:35 |
言語 | C# (.NET 8.0.203) |
結果 |
TLE
|
実行時間 | - |
コード長 | 857 bytes |
コンパイル時間 | 14,736 ms |
コンパイル使用メモリ | 167,888 KB |
実行使用メモリ | 33,404 KB |
最終ジャッジ日時 | 2024-10-11 03:46:44 |
合計ジャッジ時間 | 17,555 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
33,404 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
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 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (104 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/
ソースコード
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(); if (!s.All(x => x < 3)) { var k = (s[2] - s[1]) / 2; if (k == 0) { k = s[2] / 4; } s = new int[3] { k, s[1], s[2] - k * 2 }; sum = Make(s, sum); } return sum; } } }