結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー mits58mits58
提出日時 2016-06-05 17:42:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 530 bytes
コンパイル時間 2,565 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-11-18 09:44:37
合計ジャッジ時間 6,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,220 KB
testcase_01 AC 128 ms
54,108 KB
testcase_02 AC 125 ms
53,944 KB
testcase_03 AC 127 ms
54,176 KB
testcase_04 AC 127 ms
54,364 KB
testcase_05 AC 127 ms
53,904 KB
testcase_06 AC 130 ms
54,120 KB
testcase_07 AC 129 ms
53,844 KB
testcase_08 AC 126 ms
54,064 KB
testcase_09 AC 126 ms
53,972 KB
testcase_10 AC 125 ms
54,028 KB
testcase_11 AC 124 ms
54,012 KB
testcase_12 AC 124 ms
53,816 KB
testcase_13 AC 125 ms
54,068 KB
testcase_14 AC 127 ms
53,972 KB
testcase_15 AC 128 ms
54,124 KB
testcase_16 AC 129 ms
54,044 KB
testcase_17 AC 129 ms
54,088 KB
testcase_18 AC 129 ms
54,096 KB
testcase_19 AC 129 ms
54,052 KB
testcase_20 AC 125 ms
53,972 KB
testcase_21 AC 127 ms
54,100 KB
testcase_22 AC 132 ms
54,308 KB
testcase_23 AC 128 ms
53,956 KB
testcase_24 AC 127 ms
53,984 KB
testcase_25 AC 127 ms
53,996 KB
testcase_26 AC 129 ms
53,796 KB
testcase_27 AC 130 ms
53,860 KB
testcase_28 AC 133 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String args[]){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			char[] c=new char[14];
			String str=sc.next();
			for(int i=0;i<7;i++) c[i]=str.charAt(i);
			str=sc.next();
			for(int i=0;i<7;i++) c[i+7]=str.charAt(i);
			int res=0;
			for(int i=0;i<c.length;i++){
				if(c[i]=='o'){
					int t=1; i++;
					while(i<c.length && c[i]=='o'){
						t++;
						i++;
					}
					res=Math.max(res, t);
				}
			}
			System.out.println(res);
		}
	}
}
0