結果
問題 |
No.91 赤、緑、青の石
|
ユーザー |
![]() |
提出日時 | 2015-06-11 18:46:21 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 464 ms / 5,000 ms |
コード長 | 1,124 bytes |
コンパイル時間 | 1,075 ms |
コンパイル使用メモリ | 111,180 KB |
実行使用メモリ | 31,388 KB |
最終ジャッジ日時 | 2024-06-24 06:49:52 |
合計ジャッジ時間 | 7,425 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 28 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace foryuki { class Program { static void Main(string[] args) { int[] c = ConvertStringArrayToIntArray(Console.ReadLine().Split()); Array.Sort(c); while (c[2] - c[0] > 2) { c[2] -= 2; c[0] += 1; Array.Sort(c); } Console.WriteLine(c.Min()); } //------------------------------------------------------------- static int[] ConvertStringArrayToIntArray(string[] str) { int[] b = Array.ConvertAll<string, int>(str, delegate(string value) { return int.Parse(value); }); return b; } static List<int> ConvertStringArrayToIntList(string[] str) { var list = new List<int>(); foreach (var c in str) { list.Add(int.Parse(c)); } return list; } } }