結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 18:04:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 407 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 76,336 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-11-18 10:23:06
合計ジャッジ時間 6,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,280 KB
testcase_01 AC 108 ms
53,456 KB
testcase_02 AC 114 ms
53,716 KB
testcase_03 AC 115 ms
54,180 KB
testcase_04 AC 116 ms
54,012 KB
testcase_05 AC 116 ms
54,032 KB
testcase_06 AC 103 ms
52,980 KB
testcase_07 AC 117 ms
53,992 KB
testcase_08 AC 110 ms
53,868 KB
testcase_09 AC 104 ms
53,000 KB
testcase_10 AC 116 ms
53,912 KB
testcase_11 AC 103 ms
53,128 KB
testcase_12 AC 115 ms
54,360 KB
testcase_13 AC 119 ms
54,164 KB
testcase_14 AC 117 ms
54,028 KB
testcase_15 AC 105 ms
52,960 KB
testcase_16 AC 119 ms
54,192 KB
testcase_17 AC 118 ms
54,008 KB
testcase_18 AC 117 ms
54,088 KB
testcase_19 AC 102 ms
54,096 KB
testcase_20 AC 116 ms
54,168 KB
testcase_21 AC 104 ms
54,116 KB
testcase_22 AC 118 ms
54,064 KB
testcase_23 AC 114 ms
53,940 KB
testcase_24 AC 118 ms
54,124 KB
testcase_25 AC 114 ms
53,864 KB
testcase_26 AC 118 ms
54,132 KB
testcase_27 AC 120 ms
54,148 KB
testcase_28 AC 103 ms
53,044 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 = 0;
		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