結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー shinwisteriashinwisteria
提出日時 2018-02-21 22:36:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 445 bytes
コンパイル時間 3,435 ms
コンパイル使用メモリ 75,144 KB
実行使用メモリ 55,912 KB
最終ジャッジ日時 2024-11-18 10:23:50
合計ジャッジ時間 7,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,052 KB
testcase_01 AC 115 ms
53,788 KB
testcase_02 AC 116 ms
53,924 KB
testcase_03 AC 118 ms
53,904 KB
testcase_04 AC 103 ms
52,616 KB
testcase_05 AC 113 ms
54,100 KB
testcase_06 AC 111 ms
54,268 KB
testcase_07 AC 116 ms
54,028 KB
testcase_08 AC 113 ms
54,028 KB
testcase_09 AC 102 ms
52,856 KB
testcase_10 AC 119 ms
54,152 KB
testcase_11 AC 117 ms
53,844 KB
testcase_12 AC 104 ms
52,964 KB
testcase_13 AC 116 ms
53,972 KB
testcase_14 AC 115 ms
53,992 KB
testcase_15 AC 111 ms
54,104 KB
testcase_16 AC 104 ms
52,712 KB
testcase_17 AC 115 ms
55,912 KB
testcase_18 AC 104 ms
52,736 KB
testcase_19 AC 105 ms
52,740 KB
testcase_20 AC 114 ms
54,160 KB
testcase_21 AC 116 ms
54,132 KB
testcase_22 AC 115 ms
54,108 KB
testcase_23 AC 99 ms
52,596 KB
testcase_24 AC 103 ms
53,748 KB
testcase_25 AC 105 ms
53,068 KB
testcase_26 AC 116 ms
54,060 KB
testcase_27 AC 104 ms
52,996 KB
testcase_28 AC 116 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con203 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String[] w = {s.next() , s.next()};
		s.close();

		int max = 0 , k = 0;
		for(int i = 0;i < 2;i++){
			for(int j = 0;j < 7;j++){
				if(w[i].charAt(j) == 'o'){
					k++;
				}else{
					max = Math.max(max, k);
					k = 0;
				}
			}
		}
		max = Math.max(max, k);
		System.out.println(max);

	}

}
0