結果

問題 No.143 豆
ユーザー Maeda
提出日時 2025-03-31 13:40:29
言語 C#
(.NET 8.0.404)
結果
MLE  
実行時間 -
コード長 717 bytes
コンパイル時間 8,295 ms
コンパイル使用メモリ 168,184 KB
実行使用メモリ 185,316 KB
最終ジャッジ日時 2025-03-31 13:40:40
合計ジャッジ時間 10,469 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16 MLE * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (148 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

    class Program
    {
        static void Main(string[] args)
        {
            string num = Console.ReadLine();
            string[] numList = num.Split(' ');
            string age = Console.ReadLine();
            double beans = int.Parse(numList[0]) * int.Parse(numList[1]);
            int count = int.Parse(numList[2]);
            numList = null;
            string[] ageList = age.Split(' ');
            
            for(int i = 0; i < count; i++)
            {
                beans -= int.Parse(ageList[i]);
                if(beans < 0)
                {
                    beans = -1;
                    break;
                }
            }
            Console.WriteLine(beans);
        }
    }
0