結果

問題 No.932 解法破綻!高橋君
ユーザー curryudon08curryudon08
提出日時 2020-06-12 00:13:39
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 2,440 ms
コンパイル使用メモリ 111,204 KB
実行使用メモリ 32,496 KB
最終ジャッジ日時 2024-06-24 03:33:22
合計ジャッジ時間 3,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,120 KB
testcase_01 AC 27 ms
24,704 KB
testcase_02 AC 29 ms
27,004 KB
testcase_03 AC 28 ms
26,876 KB
testcase_04 AC 27 ms
24,868 KB
testcase_05 AC 27 ms
26,736 KB
testcase_06 AC 27 ms
24,868 KB
testcase_07 AC 27 ms
24,732 KB
testcase_08 AC 27 ms
24,736 KB
testcase_09 AC 27 ms
22,840 KB
testcase_10 AC 26 ms
24,612 KB
testcase_11 AC 27 ms
24,740 KB
testcase_12 AC 31 ms
25,136 KB
testcase_13 AC 31 ms
25,000 KB
testcase_14 AC 31 ms
25,288 KB
testcase_15 AC 28 ms
24,880 KB
testcase_16 AC 31 ms
27,344 KB
testcase_17 AC 46 ms
30,140 KB
testcase_18 AC 43 ms
32,496 KB
testcase_19 AC 43 ms
30,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

namespace _0932
{
    class Program
    {
        static void Main(string[] args)
        {
            var s = Console.ReadLine().Split(',').ToArray();
            var f = s.All(x => x.Equals("AC"));
            Console.WriteLine(f ? "Done!" : "Failed...");
        }
    }
}
0