結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー k_kadorak_kadora
提出日時 2015-06-10 20:19:24
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,996 KB
testcase_01 AC 114 ms
53,896 KB
testcase_02 AC 112 ms
53,984 KB
testcase_03 AC 101 ms
52,712 KB
testcase_04 AC 108 ms
53,476 KB
testcase_05 AC 106 ms
52,980 KB
testcase_06 AC 102 ms
52,976 KB
testcase_07 AC 111 ms
54,076 KB
testcase_08 AC 100 ms
53,096 KB
testcase_09 AC 113 ms
53,980 KB
testcase_10 AC 112 ms
54,004 KB
testcase_11 AC 104 ms
53,220 KB
testcase_12 AC 101 ms
52,940 KB
testcase_13 AC 114 ms
53,980 KB
testcase_14 AC 102 ms
52,692 KB
testcase_15 AC 112 ms
53,888 KB
testcase_16 AC 104 ms
52,848 KB
testcase_17 AC 116 ms
53,936 KB
testcase_18 AC 110 ms
53,948 KB
testcase_19 AC 106 ms
53,000 KB
testcase_20 AC 104 ms
52,980 KB
testcase_21 AC 112 ms
54,084 KB
testcase_22 AC 101 ms
52,832 KB
testcase_23 AC 106 ms
53,444 KB
testcase_24 AC 112 ms
54,144 KB
testcase_25 AC 113 ms
53,924 KB
testcase_26 AC 110 ms
53,004 KB
testcase_27 AC 99 ms
52,484 KB
testcase_28 AC 115 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

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