結果
問題 |
No.143 豆
|
ユーザー |
![]() |
提出日時 | 2025-03-31 14:07:24 |
言語 | C# (.NET 8.0.404) |
結果 |
WA
|
実行時間 | - |
コード長 | 690 bytes |
コンパイル時間 | 8,238 ms |
コンパイル使用メモリ | 168,796 KB |
実行使用メモリ | 186,080 KB |
最終ジャッジ日時 | 2025-03-31 14:07:35 |
合計ジャッジ時間 | 10,495 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 WA * 1 MLE * 1 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (147 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
class Program { static void Main(string[] args) { string[] numList = Console.ReadLine().Split(' '); double beans = int.Parse(numList[0]) * int.Parse(numList[1]); int count = int.Parse(numList[2]); numList = null; string[] ageList = Console.ReadLine().Split(' '); int i = 0; while(i < count && beans >= 0 ) { beans -= int.Parse(ageList[i]); i++; } if (beans < 0 || beans == 0 && i+1 != count) { beans = -1; } Console.WriteLine(beans); } }