結果

問題 No.1534 おなかがいたい
ユーザー nakamura0422nakamura0422
提出日時 2023-01-11 15:36:55
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 11,094 ms
コンパイル使用メモリ 168,364 KB
実行使用メモリ 186,900 KB
最終ジャッジ日時 2024-12-22 07:53:31
合計ジャッジ時間 14,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
31,332 KB
testcase_01 AC 68 ms
31,340 KB
testcase_02 AC 69 ms
31,852 KB
testcase_03 AC 68 ms
31,468 KB
testcase_04 AC 69 ms
30,956 KB
testcase_05 AC 68 ms
31,332 KB
testcase_06 AC 69 ms
31,720 KB
testcase_07 AC 68 ms
31,076 KB
testcase_08 AC 69 ms
32,480 KB
testcase_09 AC 67 ms
31,600 KB
testcase_10 AC 67 ms
31,720 KB
testcase_11 AC 70 ms
31,072 KB
testcase_12 AC 83 ms
33,860 KB
testcase_13 AC 80 ms
33,284 KB
testcase_14 AC 82 ms
33,544 KB
testcase_15 AC 72 ms
33,936 KB
testcase_16 AC 114 ms
36,232 KB
testcase_17 AC 113 ms
36,104 KB
testcase_18 AC 113 ms
35,848 KB
testcase_19 AC 71 ms
33,412 KB
testcase_20 AC 159 ms
38,536 KB
testcase_21 AC 67 ms
31,128 KB
testcase_22 AC 68 ms
186,900 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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