結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー 37zigen37zigen
提出日時 2016-03-31 12:47:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 480 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 76,688 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-11-18 09:40:50
合計ジャッジ時間 6,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,968 KB
testcase_01 AC 112 ms
52,936 KB
testcase_02 AC 130 ms
54,184 KB
testcase_03 AC 126 ms
54,020 KB
testcase_04 AC 123 ms
54,140 KB
testcase_05 AC 113 ms
53,884 KB
testcase_06 AC 124 ms
53,888 KB
testcase_07 AC 125 ms
54,200 KB
testcase_08 AC 126 ms
54,100 KB
testcase_09 AC 132 ms
54,152 KB
testcase_10 AC 130 ms
54,100 KB
testcase_11 AC 138 ms
53,996 KB
testcase_12 AC 128 ms
54,100 KB
testcase_13 AC 128 ms
54,232 KB
testcase_14 AC 127 ms
54,176 KB
testcase_15 AC 128 ms
53,824 KB
testcase_16 AC 127 ms
53,924 KB
testcase_17 AC 126 ms
54,128 KB
testcase_18 AC 109 ms
53,092 KB
testcase_19 AC 113 ms
52,904 KB
testcase_20 AC 124 ms
54,116 KB
testcase_21 AC 123 ms
53,856 KB
testcase_22 AC 125 ms
54,412 KB
testcase_23 AC 128 ms
54,008 KB
testcase_24 AC 128 ms
54,252 KB
testcase_25 AC 126 ms
54,068 KB
testcase_26 AC 125 ms
54,040 KB
testcase_27 AC 129 ms
53,924 KB
testcase_28 AC 129 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder203;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String str1=sc.nextLine();
		String str2=sc.nextLine();
		String str=str1+str2;
		int count=0;
		int max=0;
		for(int i=0;i<str.length();i++){
			if(str.charAt(i)=='o'){
				count++;
				max=Math.max(count, max);
			}else if(str.charAt(i)==('x')){
				max=Math.max(count, max);
				count=0;
			}
		}
		System.out.println(max);
	}
}
0