結果

問題 No.1534 おなかがいたい
ユーザー nakamura0422nakamura0422
提出日時 2023-01-11 15:36:55
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 10,487 ms
コンパイル使用メモリ 167,312 KB
実行使用メモリ 184,128 KB
最終ジャッジ日時 2024-06-01 19:36:22
合計ジャッジ時間 13,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
31,080 KB
testcase_01 AC 67 ms
30,952 KB
testcase_02 AC 67 ms
31,732 KB
testcase_03 AC 67 ms
31,076 KB
testcase_04 AC 67 ms
31,204 KB
testcase_05 AC 66 ms
31,004 KB
testcase_06 AC 67 ms
31,588 KB
testcase_07 AC 67 ms
31,096 KB
testcase_08 AC 68 ms
32,492 KB
testcase_09 AC 68 ms
31,720 KB
testcase_10 AC 67 ms
31,720 KB
testcase_11 AC 66 ms
30,956 KB
testcase_12 AC 81 ms
33,680 KB
testcase_13 AC 78 ms
33,420 KB
testcase_14 AC 79 ms
33,420 KB
testcase_15 AC 70 ms
33,928 KB
testcase_16 AC 112 ms
35,972 KB
testcase_17 AC 112 ms
35,980 KB
testcase_18 AC 111 ms
35,940 KB
testcase_19 AC 68 ms
33,164 KB
testcase_20 AC 155 ms
38,528 KB
testcase_21 AC 67 ms
31,040 KB
testcase_22 AC 67 ms
184,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (90 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/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

static class Ponponpain
{
    static void Main()
    {
		var s = Console.ReadLine();
		var endIndex = s.IndexOf("pain");
		if(endIndex <= 0 )
			Console.WriteLine(-1);
		else
		{
			var pon = s.Substring(0, endIndex).Split('p').Where(x => x.StartsWith("on")).Count()-1;
			if(pon == 0)
			{
				Console.WriteLine(-1);
			} 
			else
			{
				Console.WriteLine(pon);
			}
		}
	}
}
0