結果

問題 No.143 豆
ユーザー eringi103eringi103
提出日時 2016-10-20 17:15:18
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,238 bytes
コンパイル時間 855 ms
コンパイル使用メモリ 104,448 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-05-02 05:33:53
合計ジャッジ時間 1,877 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections.Generic;

public class Program
{
  static void Main()
  {
    string data = Console.ReadLine();
    string _age = Console.ReadLine();
    string Mame_ = "";
    string Fukuro_ = "";
    string Family_ = "";
    int i = 0;

    while (data.Substring(i , 1) != " ")
    {
      Mame_ = Mame_ + data.Substring(i, 1);
      i++;
    }
    i++;
    while (data.Substring(i, 1) != " ")
    {
      Fukuro_ = Fukuro_ + data.Substring(i, 1);
      i++;
    }
    Family_ = data.Substring(i + 1, 1);

    int Mame = Convert.ToInt32(Mame_);
    int Fukuro = Convert.ToInt32(Fukuro_);
    int Family = Convert.ToInt32(Family_);

    //豆の総数
    int Mame_Kei = Fukuro * Mame;

    //家族の年齢
    List<int> age = new List<int>();
    for (int a = 0; a < _age.Length; a++)
    {
      string age_ = "";
      if (_age.Substring(a, 1) != " ")
      {
        age_ = age_ + _age.Substring(a, 1);
      }
      else
      {
        age.Add(Convert.ToInt32(age_));
      }
    }

    for (int c = 0; c < Family; c++)
    {
      Mame_Kei = Mame_Kei - age[c];
    }
    if (Mame_Kei < 0)
    {
      Console.WriteLine("-1");
    }
    else
    {
      Console.WriteLine(Mame_Kei.ToString());
    }

  }
}
0