結果
問題 | No.495 (^^*) Easy |
ユーザー | yagi2 |
提出日時 | 2017-04-14 10:26:38 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 360 ms / 2,000 ms |
コード長 | 637 bytes |
コンパイル時間 | 2,066 ms |
コンパイル使用メモリ | 76,604 KB |
実行使用メモリ | 52,576 KB |
最終ジャッジ日時 | 2024-07-18 15:14:02 |
合計ジャッジ時間 | 4,356 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 147 ms
41,996 KB |
testcase_01 | AC | 144 ms
42,240 KB |
testcase_02 | AC | 150 ms
42,224 KB |
testcase_03 | AC | 146 ms
42,292 KB |
testcase_04 | AC | 151 ms
42,424 KB |
testcase_05 | AC | 205 ms
43,804 KB |
testcase_06 | AC | 360 ms
52,576 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String S = sc.next(); long right = 0; long left = 0; String[] sp = S.split(""); for (int i = 0; i < sp.length; i++) { if (i != sp.length - 1) { if (sp[i].equals("^") && sp[i+1].equals("*")) { left++; } if (sp[i].equals("(") && sp[i+1].equals("*")) { right++; } } } System.out.println(left + " " + right); } }