結果

問題 No.932 解法破綻!高橋君
ユーザー mobchanmobchan
提出日時 2023-04-27 01:01:09
言語 C#
(.NET 8.0.203)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 289 bytes
コンパイル時間 13,074 ms
コンパイル使用メモリ 167,360 KB
実行使用メモリ 190,820 KB
最終ジャッジ日時 2024-04-28 01:12:31
合計ジャッジ時間 9,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
27,648 KB
testcase_01 AC 40 ms
27,628 KB
testcase_02 AC 39 ms
27,648 KB
testcase_03 AC 38 ms
27,520 KB
testcase_04 AC 41 ms
27,520 KB
testcase_05 AC 40 ms
27,648 KB
testcase_06 AC 39 ms
27,392 KB
testcase_07 AC 43 ms
27,264 KB
testcase_08 AC 43 ms
27,776 KB
testcase_09 AC 38 ms
27,392 KB
testcase_10 AC 40 ms
27,392 KB
testcase_11 AC 44 ms
27,520 KB
testcase_12 AC 39 ms
27,776 KB
testcase_13 AC 40 ms
27,648 KB
testcase_14 AC 39 ms
27,776 KB
testcase_15 AC 38 ms
27,520 KB
testcase_16 AC 41 ms
27,648 KB
testcase_17 AC 50 ms
35,436 KB
testcase_18 AC 47 ms
35,456 KB
testcase_19 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (85 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/

ソースコード

diff #

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...");
    }
}
0