結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー koukonkokoukonko
提出日時 2015-12-15 15:32:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 592 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 75,204 KB
実行使用メモリ 50,568 KB
最終ジャッジ日時 2024-11-18 09:36:45
合計ジャッジ時間 4,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
50,432 KB
testcase_01 AC 59 ms
50,100 KB
testcase_02 AC 61 ms
50,296 KB
testcase_03 AC 58 ms
50,516 KB
testcase_04 AC 59 ms
50,368 KB
testcase_05 AC 61 ms
50,520 KB
testcase_06 AC 60 ms
50,568 KB
testcase_07 AC 58 ms
50,496 KB
testcase_08 AC 59 ms
50,036 KB
testcase_09 AC 60 ms
50,484 KB
testcase_10 AC 61 ms
50,468 KB
testcase_11 AC 61 ms
50,488 KB
testcase_12 AC 60 ms
50,448 KB
testcase_13 AC 60 ms
50,444 KB
testcase_14 AC 58 ms
50,564 KB
testcase_15 AC 59 ms
50,124 KB
testcase_16 AC 61 ms
50,164 KB
testcase_17 AC 60 ms
50,236 KB
testcase_18 AC 60 ms
50,516 KB
testcase_19 AC 62 ms
50,480 KB
testcase_20 AC 60 ms
50,444 KB
testcase_21 AC 61 ms
50,436 KB
testcase_22 AC 61 ms
50,364 KB
testcase_23 AC 60 ms
50,064 KB
testcase_24 AC 59 ms
50,524 KB
testcase_25 AC 60 ms
50,504 KB
testcase_26 AC 60 ms
50,212 KB
testcase_27 AC 58 ms
50,040 KB
testcase_28 AC 58 ms
50,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {
			String line = read.readLine() + read.readLine();

			int max = 0;
			int count = 0;
			for (int i = 0; i < line.length(); ++i) {
				if (line.charAt(i) == 'o') {
					++count;
					if (max < count) {
						max = count;
					}
				} else {
					count = 0;
				}
			}

			System.out.println(max);

		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0