結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー kenkooookenkoooo
提出日時 2015-05-08 22:48:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 501 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 76,616 KB
実行使用メモリ 56,724 KB
最終ジャッジ日時 2024-11-18 09:05:29
合計ジャッジ時間 7,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,996 KB
testcase_01 AC 139 ms
55,000 KB
testcase_02 AC 140 ms
54,872 KB
testcase_03 AC 131 ms
54,684 KB
testcase_04 AC 138 ms
54,464 KB
testcase_05 AC 142 ms
54,740 KB
testcase_06 AC 148 ms
54,888 KB
testcase_07 AC 145 ms
55,008 KB
testcase_08 AC 147 ms
54,972 KB
testcase_09 AC 139 ms
54,912 KB
testcase_10 AC 130 ms
54,808 KB
testcase_11 AC 143 ms
54,692 KB
testcase_12 AC 141 ms
54,900 KB
testcase_13 AC 141 ms
54,516 KB
testcase_14 AC 145 ms
54,892 KB
testcase_15 AC 144 ms
54,952 KB
testcase_16 AC 147 ms
54,776 KB
testcase_17 AC 142 ms
55,024 KB
testcase_18 AC 143 ms
55,044 KB
testcase_19 AC 152 ms
54,940 KB
testcase_20 AC 143 ms
54,924 KB
testcase_21 AC 140 ms
54,484 KB
testcase_22 AC 143 ms
55,016 KB
testcase_23 AC 143 ms
54,876 KB
testcase_24 AC 144 ms
54,780 KB
testcase_25 AC 132 ms
54,524 KB
testcase_26 AC 144 ms
55,184 KB
testcase_27 AC 142 ms
56,724 KB
testcase_28 AC 143 ms
55,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] weeks = new String[2];
		for (int i = 0; i < weeks.length; i++) {
			weeks[i] = sc.next();
		}
		char[] all = ("x" + weeks[0] + weeks[1] + "x").toCharArray();
		int cnt = 0;
		int max = 0;
		for (int i = 0; i < all.length; i++) {
			if (all[i] == 'o') {
				cnt++;
			} else {
				max = Math.max(max, cnt);
				cnt = 0;
			}
		}
		System.out.println(max);

	}
}
0