結果

問題 No.932 解法破綻!高橋君
ユーザー mobchanmobchan
提出日時 2023-04-27 01:01:09
言語 C#
(.NET 8.0.203)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 289 bytes
コンパイル時間 10,180 ms
コンパイル使用メモリ 143,760 KB
実行使用メモリ 165,884 KB
最終ジャッジ日時 2023-08-10 07:37:04
合計ジャッジ時間 11,486 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
26,404 KB
testcase_01 AC 45 ms
26,288 KB
testcase_02 AC 44 ms
26,656 KB
testcase_03 AC 44 ms
28,392 KB
testcase_04 AC 44 ms
26,612 KB
testcase_05 AC 44 ms
26,292 KB
testcase_06 AC 44 ms
26,464 KB
testcase_07 AC 44 ms
26,596 KB
testcase_08 AC 44 ms
26,508 KB
testcase_09 AC 44 ms
26,292 KB
testcase_10 AC 44 ms
26,368 KB
testcase_11 AC 45 ms
28,584 KB
testcase_12 AC 46 ms
26,604 KB
testcase_13 AC 45 ms
26,828 KB
testcase_14 AC 47 ms
28,680 KB
testcase_15 AC 46 ms
26,468 KB
testcase_16 AC 45 ms
26,704 KB
testcase_17 AC 55 ms
32,732 KB
testcase_18 AC 55 ms
34,736 KB
testcase_19 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  Determining projects to restore...
  Restored /home/judge/data/code/main.csproj (in 124 ms).
.NET 向け Microsoft (R) Build Engine バージョン 17.0.0-preview-21470-01+cb055d28f
Copyright (C) Microsoft Corporation.All rights reserved.

  プレビュー版の .NET を使用しています。https://aka.ms/dotnet-core-preview をご覧ください
  main -> /home/judge/data/code/bin/Release/net6.0/main.dll
  main -> /home/judge/data/code/bin/Release/net6.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