結果

問題 No.932 解法破綻!高橋君
ユーザー YOS G-specYOS G-spec
提出日時 2019-11-30 10:22:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 2,650 ms
コンパイル使用メモリ 101,648 KB
実行使用メモリ 27,124 KB
最終ジャッジ日時 2023-08-13 08:07:13
合計ジャッジ時間 4,865 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
20,500 KB
testcase_01 AC 50 ms
20,636 KB
testcase_02 AC 51 ms
18,492 KB
testcase_03 AC 52 ms
22,584 KB
testcase_04 AC 52 ms
20,644 KB
testcase_05 AC 53 ms
20,616 KB
testcase_06 AC 51 ms
20,472 KB
testcase_07 AC 51 ms
20,456 KB
testcase_08 AC 51 ms
22,644 KB
testcase_09 AC 50 ms
20,424 KB
testcase_10 AC 50 ms
20,528 KB
testcase_11 AC 52 ms
20,540 KB
testcase_12 AC 59 ms
20,740 KB
testcase_13 AC 58 ms
20,732 KB
testcase_14 AC 61 ms
20,740 KB
testcase_15 AC 53 ms
20,652 KB
testcase_16 AC 58 ms
22,716 KB
testcase_17 AC 71 ms
25,204 KB
testcase_18 AC 68 ms
25,040 KB
testcase_19 AC 68 ms
27,124 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program{
	static void Main(){
		Console.WriteLine(
			Array.Exists(
					Console.ReadLine()
					.Split(',')
				,s=>s!="AC")?
					"Failed...":
					"Done!");
	}
}
0