結果

問題 No.495 (^^*) Easy
ユーザー mencottonmencotton
提出日時 2017-12-27 17:05:50
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 100,068 KB
実行使用メモリ 24,648 KB
最終ジャッジ日時 2023-08-23 07:15:49
合計ジャッジ時間 3,063 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 52 ms
20,576 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = Console.ReadLine();
            int[] ret = new int[2];
            for (int i = 0; i < i - 5; i++)
            {
                if (s.Substring(i,5) == "(^^*)") ret[0]++;
                if (s.Substring(i,5) == "(*^^)") ret[1]++;
            }
            Console.WriteLine(ret[0] + " " + ret[1]);
        }
    }
}
0