結果
問題 | No.495 (^^*) Easy |
ユーザー | jimano |
提出日時 | 2018-01-27 16:42:44 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 117 ms / 2,000 ms |
コード長 | 734 bytes |
コンパイル時間 | 3,530 ms |
コンパイル使用メモリ | 79,740 KB |
実行使用メモリ | 55,764 KB |
最終ジャッジ日時 | 2024-06-09 05:29:18 |
合計ジャッジ時間 | 3,975 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
51,236 KB |
testcase_01 | AC | 73 ms
51,132 KB |
testcase_02 | AC | 67 ms
51,100 KB |
testcase_03 | AC | 73 ms
51,268 KB |
testcase_04 | AC | 73 ms
51,384 KB |
testcase_05 | AC | 97 ms
53,252 KB |
testcase_06 | AC | 117 ms
55,764 KB |
ソースコード
package me.yukicoder.wip;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class No0495_2 {public static void main(String[] args) {try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {String input = br.readLine();int length = input.length();int cntLeft = 0;int cntRight = 0;String right = "(*^^)";String left = "(^^*)";for (int i = 0; i < length - 5; i++) {if (input.substring(i, i + 5).equals(right)) {cntRight++;} else if (input.substring(i, i + 5).equals(left)) {cntLeft++;}}System.out.println(cntLeft + " " + cntRight);} catch (IOException e) {e.printStackTrace();}}}