結果
問題 | No.495 (^^*) Easy |
ユーザー | 37zigen |
提出日時 | 2017-03-24 22:58:17 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 201 ms / 2,000 ms |
コード長 | 479 bytes |
コンパイル時間 | 2,730 ms |
コンパイル使用メモリ | 76,692 KB |
実行使用メモリ | 56,480 KB |
最終ジャッジ日時 | 2024-07-05 22:58:59 |
合計ジャッジ時間 | 4,142 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 142 ms
54,716 KB |
testcase_01 | AC | 146 ms
55,068 KB |
testcase_02 | AC | 138 ms
54,996 KB |
testcase_03 | AC | 137 ms
54,640 KB |
testcase_04 | AC | 127 ms
53,884 KB |
testcase_05 | AC | 146 ms
54,868 KB |
testcase_06 | AC | 201 ms
56,480 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { new Main().run(); } void run() { Scanner sc = new Scanner(System.in); String S = sc.next(); String l = "(^^*)"; String r = "(*^^)"; int cntL = 0, cntR = 0; for (int i = 0; i + 5 < S.length(); i += 5) { if (S.substring(i, i + 5).equals(l)) { ++cntL; } else if (S.substring(i, i + 5).equals(r)) { ++cntR; } } System.out.println(cntL + " " + cntR); } }