結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 18:03:23
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 423 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 76,212 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-10-07 19:34:27
合計ジャッジ時間 6,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,736 KB
testcase_01 WA -
testcase_02 AC 114 ms
53,920 KB
testcase_03 AC 113 ms
54,136 KB
testcase_04 AC 117 ms
54,124 KB
testcase_05 AC 113 ms
54,120 KB
testcase_06 AC 102 ms
52,912 KB
testcase_07 AC 113 ms
54,116 KB
testcase_08 AC 113 ms
54,116 KB
testcase_09 AC 105 ms
52,972 KB
testcase_10 AC 103 ms
53,020 KB
testcase_11 AC 103 ms
52,768 KB
testcase_12 AC 116 ms
54,000 KB
testcase_13 AC 114 ms
53,960 KB
testcase_14 AC 99 ms
52,360 KB
testcase_15 AC 116 ms
53,992 KB
testcase_16 AC 105 ms
52,776 KB
testcase_17 AC 121 ms
53,752 KB
testcase_18 AC 106 ms
52,736 KB
testcase_19 AC 121 ms
53,924 KB
testcase_20 AC 116 ms
53,984 KB
testcase_21 AC 113 ms
53,912 KB
testcase_22 AC 102 ms
53,020 KB
testcase_23 AC 116 ms
53,864 KB
testcase_24 AC 112 ms
54,204 KB
testcase_25 AC 116 ms
53,932 KB
testcase_26 AC 111 ms
53,744 KB
testcase_27 AC 114 ms
54,264 KB
testcase_28 AC 118 ms
54,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = "";
		for (int i=0; i<2; i++) {
			s += sc.nextLine();
		}
		
		int count = 0;
		int max = Integer.MIN_VALUE;
		for (int i=0; i<s.length(); i++) {
			if (s.charAt(i)=='o') {
				count++;
				max = Math.max(max,count);
			}
			else {count = 0;}
		}
		
		System.out.println(max);
	}
}
0