結果
問題 | No.495 (^^*) Easy |
ユーザー | fujita |
提出日時 | 2023-05-10 15:23:46 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 67 ms / 2,000 ms |
コード長 | 1,076 bytes |
コンパイル時間 | 8,661 ms |
コンパイル使用メモリ | 168,692 KB |
実行使用メモリ | 204,760 KB |
最終ジャッジ日時 | 2024-05-05 03:25:11 |
合計ジャッジ時間 | 9,567 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
27,008 KB |
testcase_01 | AC | 43 ms
27,008 KB |
testcase_02 | AC | 40 ms
26,880 KB |
testcase_03 | AC | 41 ms
26,880 KB |
testcase_04 | AC | 42 ms
27,008 KB |
testcase_05 | AC | 43 ms
29,056 KB |
testcase_06 | AC | 67 ms
204,760 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (80 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/
ソースコード
using System; namespace yukicoder { class Program { static void Main(string[] args) { var str = Console.ReadLine(); string[] strings = new string[str.Length]; int L = 0 , R = 0; for(int i = 0; i < str.Length; i++) { if (str.Substring(0, 1) == "#" || str.Substring(1, 1) == "#" || str.Substring(2, 1) == "#" || str.Substring(3, 1) == "#" || str.Substring(4, 1) == "#") { Console.WriteLine(L + " " + R); break; } else if(str.Substring(i, 5) == "(^^*)") { L++; } else if(str.Substring(i, 5) == "(*^^)") { R++; } else if(str.Substring(i + 4, 1) == "#") { Console.WriteLine(L + " " + R); break; } } } } }