結果

問題 No.495 (^^*) Easy
ユーザー PE11PE11
提出日時 2017-07-04 17:41:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 927 ms
コンパイル使用メモリ 112,500 KB
実行使用メモリ 27,696 KB
最終ジャッジ日時 2024-04-15 16:00:13
合計ジャッジ時間 1,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
27,436 KB
testcase_01 AC 29 ms
25,208 KB
testcase_02 AC 31 ms
25,268 KB
testcase_03 AC 31 ms
25,008 KB
testcase_04 AC 34 ms
27,696 KB
testcase_05 AC 34 ms
25,652 KB
testcase_06 AC 37 ms
26,672 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.Collections.Generic;
using System.Linq;
using System.Text;

class Program
{
	static void Main()
	{
		var Face = Console.ReadLine().Split(')').ToList<string>();

		int Left = Face.Where(x => x.Contains(@"^^*")).Count();

		Console.WriteLine(string.Format("{0} {1}", Left, System.Math.Abs(Left - (Face.Count -1))));

	}
}

0