結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:38:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 361 bytes
コンパイル時間 3,764 ms
コンパイル使用メモリ 76,104 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-11-18 09:48:02
合計ジャッジ時間 8,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,928 KB
testcase_01 AC 135 ms
53,876 KB
testcase_02 AC 135 ms
54,040 KB
testcase_03 AC 135 ms
53,952 KB
testcase_04 AC 132 ms
54,100 KB
testcase_05 AC 134 ms
53,728 KB
testcase_06 AC 135 ms
54,080 KB
testcase_07 AC 134 ms
54,012 KB
testcase_08 AC 135 ms
53,856 KB
testcase_09 AC 136 ms
53,872 KB
testcase_10 AC 136 ms
54,020 KB
testcase_11 AC 133 ms
54,080 KB
testcase_12 AC 134 ms
54,040 KB
testcase_13 AC 137 ms
53,840 KB
testcase_14 AC 133 ms
53,992 KB
testcase_15 AC 135 ms
53,992 KB
testcase_16 AC 136 ms
53,892 KB
testcase_17 AC 135 ms
53,876 KB
testcase_18 AC 136 ms
53,916 KB
testcase_19 AC 134 ms
54,008 KB
testcase_20 AC 136 ms
53,892 KB
testcase_21 AC 134 ms
53,888 KB
testcase_22 AC 136 ms
54,028 KB
testcase_23 AC 135 ms
54,188 KB
testcase_24 AC 134 ms
53,960 KB
testcase_25 AC 135 ms
53,872 KB
testcase_26 AC 137 ms
54,084 KB
testcase_27 AC 134 ms
54,008 KB
testcase_28 AC 135 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		String s = sc.next() + sc.next();
		int cnt = 0, max = 0;
		for(int i = 0; i < s.length(); i++){
			if(s.charAt(i) == 'o'){
				cnt++;
				max = Math.max(max, cnt);
			} else {
				cnt = 0;
			}
		}
		System.out.println(max);
	}
}
0