結果

問題 No.1534 おなかがいたい
ユーザー nakamura0422nakamura0422
提出日時 2023-01-11 15:21:46
言語 C#
(.NET 8.0.404)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 7,738 ms
コンパイル使用メモリ 167,128 KB
実行使用メモリ 185,920 KB
最終ジャッジ日時 2024-12-22 07:17:33
合計ジャッジ時間 10,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
30,956 KB
testcase_01 AC 69 ms
31,200 KB
testcase_02 AC 67 ms
31,840 KB
testcase_03 AC 69 ms
31,300 KB
testcase_04 AC 67 ms
31,216 KB
testcase_05 AC 66 ms
30,948 KB
testcase_06 AC 69 ms
31,592 KB
testcase_07 AC 68 ms
30,960 KB
testcase_08 WA -
testcase_09 AC 67 ms
31,464 KB
testcase_10 AC 68 ms
31,844 KB
testcase_11 AC 66 ms
31,080 KB
testcase_12 AC 83 ms
33,936 KB
testcase_13 AC 81 ms
33,172 KB
testcase_14 AC 79 ms
33,428 KB
testcase_15 WA -
testcase_16 AC 113 ms
35,720 KB
testcase_17 AC 114 ms
35,972 KB
testcase_18 AC 113 ms
35,844 KB
testcase_19 AC 69 ms
33,408 KB
testcase_20 AC 156 ms
38,536 KB
testcase_21 AC 67 ms
30,960 KB
testcase_22 AC 69 ms
185,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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
			Console.WriteLine(s.Substring(0, endIndex).Split('p').Where(x => x.StartsWith("on")).Count()-1);
	}
}
0