結果
問題 | No.495 (^^*) Easy |
ユーザー | nomhiro1204 |
提出日時 | 2017-04-04 20:31:14 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 212 ms / 2,000 ms |
コード長 | 546 bytes |
コンパイル時間 | 2,351 ms |
コンパイル使用メモリ | 76,916 KB |
実行使用メモリ | 43,920 KB |
最終ジャッジ日時 | 2024-07-08 08:37:17 |
合計ジャッジ時間 | 3,430 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
42,624 KB |
testcase_01 | AC | 129 ms
42,408 KB |
testcase_02 | AC | 128 ms
42,412 KB |
testcase_03 | AC | 140 ms
42,396 KB |
testcase_04 | AC | 138 ms
42,536 KB |
testcase_05 | AC | 154 ms
42,368 KB |
testcase_06 | AC | 212 ms
43,920 KB |
ソースコード
import java.util.*; public class Main { public static void main(String args[] ) throws Exception { Scanner sc = new Scanner(System.in); String input = sc.next(); int right = 0, left = 0; for (int i = 0 ; i < input.length() ; i++) { if ( (i = input.indexOf("(^^*)", i)) != -1){ left++; } else { break; } } for (int i = 0 ; i < input.length() ; i++) { if ( (i = input.indexOf("(*^^)", i)) != -1){ right++; } else { break; } } System.out.println(left + " " + right); } }