結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー k_kadora
提出日時 2015-06-10 20:19:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 116 ms / 1,000 ms
コード長 505 bytes
コンパイル時間 3,032 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-11-18 09:22:47
合計ジャッジ時間 7,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Gw{
	public static void main(String[] arg){
		String w1,w2;
		int temp=0,res = 0;
		Scanner sc = new Scanner(System.in);
		w1 = sc.next();
		w2 = sc.next();
		for(int i=0;i<7;i++){
			if(w1.charAt(i) == 'o'){
				temp++;
			}else{
				if(res < temp)res = temp;
				temp = 0;
			}
		}
		for(int i=0;i<7;i++){
			if(w2.charAt(i) == 'o'){
				temp++;
			}else{
				if(res<temp)res = temp;
				temp = 0;
			}
		}
		if(res<temp)res = temp;
		System.out.println(res);
	}
}
0