結果
問題 | No.112 ややこしい鶴亀算 |
ユーザー | aketijyuuzou |
提出日時 | 2024-10-10 22:45:23 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 30 ms / 5,000 ms |
コード長 | 1,218 bytes |
コンパイル時間 | 887 ms |
コンパイル使用メモリ | 113,432 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-10-10 22:45:26 |
合計ジャッジ時間 | 2,542 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
18,944 KB |
testcase_01 | AC | 29 ms
18,944 KB |
testcase_02 | AC | 29 ms
19,072 KB |
testcase_03 | AC | 29 ms
19,072 KB |
testcase_04 | AC | 29 ms
18,688 KB |
testcase_05 | AC | 30 ms
18,944 KB |
testcase_06 | AC | 30 ms
18,944 KB |
testcase_07 | AC | 30 ms
19,072 KB |
testcase_08 | AC | 30 ms
18,944 KB |
testcase_09 | AC | 30 ms
19,072 KB |
testcase_10 | AC | 29 ms
18,944 KB |
testcase_11 | AC | 30 ms
18,944 KB |
testcase_12 | AC | 30 ms
18,944 KB |
testcase_13 | AC | 30 ms
19,072 KB |
testcase_14 | AC | 30 ms
19,072 KB |
testcase_15 | AC | 30 ms
19,072 KB |
testcase_16 | AC | 30 ms
18,944 KB |
testcase_17 | AC | 30 ms
18,944 KB |
testcase_18 | AC | 29 ms
19,072 KB |
testcase_19 | AC | 29 ms
19,072 KB |
testcase_20 | AC | 29 ms
19,072 KB |
testcase_21 | AC | 30 ms
19,072 KB |
testcase_22 | AC | 29 ms
18,944 KB |
testcase_23 | AC | 29 ms
19,072 KB |
testcase_24 | AC | 29 ms
18,944 KB |
コンパイルメッセージ
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; class Program { static string InputPattern = "InputX"; static List<string> GetInputList() { var WillReturn = new List<string>(); if (InputPattern == "Input1") { WillReturn.Add("2"); WillReturn.Add("2 4"); //1 1 //1番目の動物が亀、2番目の動物が鶴である } else if (InputPattern == "Input2") { WillReturn.Add("3"); WillReturn.Add("4 4 4"); //3 0 //3匹とも鶴である } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { List<string> InputList = GetInputList(); int[] AArr = InputList[1].Split(' ').Select(X => int.Parse(X)).ToArray(); int S = AArr.Sum() / (AArr.Length - 1); int TuruCnt = 0; int KameCnt = 0; foreach (int EachInt in AArr) { if (S - EachInt == 2) TuruCnt++; else KameCnt++; } Console.WriteLine("{0} {1}", TuruCnt, KameCnt); } }