結果
問題 | No.932 解法破綻!高橋君 |
ユーザー |
|
提出日時 | 2023-04-27 01:01:09 |
言語 | C# (.NET 8.0.404) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 289 bytes |
コンパイル時間 | 10,226 ms |
コンパイル使用メモリ | 164,556 KB |
実行使用メモリ | 189,716 KB |
最終ジャッジ日時 | 2024-11-16 09:07:31 |
合計ジャッジ時間 | 11,651 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 MLE * 1 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (100 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main(string[] args) { var S = Console.ReadLine().Split(','); if (S.All(x => x == "AC")) Console.WriteLine("Done!"); else Console.WriteLine("Failed..."); } }