結果
問題 | No.1534 おなかがいたい |
ユーザー | bluemegane |
提出日時 | 2021-06-07 15:18:06 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 427 bytes |
コンパイル時間 | 2,043 ms |
コンパイル使用メモリ | 101,632 KB |
実行使用メモリ | 22,200 KB |
最終ジャッジ日時 | 2024-11-24 19:51:07 |
合計ジャッジ時間 | 3,993 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
18,560 KB |
testcase_01 | AC | 26 ms
20,536 KB |
testcase_02 | AC | 26 ms
20,280 KB |
testcase_03 | AC | 27 ms
20,656 KB |
testcase_04 | AC | 27 ms
20,796 KB |
testcase_05 | AC | 27 ms
20,540 KB |
testcase_06 | AC | 26 ms
20,408 KB |
testcase_07 | AC | 26 ms
20,532 KB |
testcase_08 | WA | - |
testcase_09 | AC | 25 ms
20,528 KB |
testcase_10 | AC | 25 ms
20,272 KB |
testcase_11 | AC | 25 ms
20,664 KB |
testcase_12 | AC | 30 ms
21,676 KB |
testcase_13 | AC | 27 ms
20,652 KB |
testcase_14 | AC | 28 ms
20,660 KB |
testcase_15 | WA | - |
testcase_16 | AC | 38 ms
21,936 KB |
testcase_17 | AC | 37 ms
21,940 KB |
testcase_18 | AC | 39 ms
22,200 KB |
testcase_19 | AC | 27 ms
20,916 KB |
testcase_20 | AC | 31 ms
21,164 KB |
testcase_21 | AC | 28 ms
20,656 KB |
testcase_22 | AC | 26 ms
20,528 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Hello { static void Main() { var s = Console.ReadLine().Trim(); getAns(s); } static void getAns(string s) { var p = s.IndexOf("pain"); if (p == -1) { Console.WriteLine(-1); return; } var t = s.Substring(0, p); var tL = t.Length; var ans = (tL - t.Replace("pon", "").Length) / 3 - 1; Console.WriteLine(ans); } }