結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー shinwisteriashinwisteria
提出日時 2018-02-21 22:34:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 3,940 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-09-19 19:55:15
合計ジャッジ時間 8,176 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,088 KB
testcase_01 AC 126 ms
41,156 KB
testcase_02 AC 132 ms
41,136 KB
testcase_03 AC 129 ms
41,184 KB
testcase_04 AC 127 ms
41,008 KB
testcase_05 AC 113 ms
41,148 KB
testcase_06 AC 128 ms
41,048 KB
testcase_07 AC 126 ms
41,132 KB
testcase_08 AC 135 ms
41,152 KB
testcase_09 AC 127 ms
41,364 KB
testcase_10 WA -
testcase_11 AC 128 ms
41,392 KB
testcase_12 AC 127 ms
41,160 KB
testcase_13 AC 127 ms
41,252 KB
testcase_14 AC 129 ms
41,308 KB
testcase_15 AC 129 ms
41,208 KB
testcase_16 WA -
testcase_17 AC 128 ms
41,168 KB
testcase_18 AC 126 ms
41,120 KB
testcase_19 AC 127 ms
41,388 KB
testcase_20 AC 126 ms
40,908 KB
testcase_21 AC 125 ms
41,080 KB
testcase_22 AC 127 ms
40,992 KB
testcase_23 AC 123 ms
41,184 KB
testcase_24 AC 128 ms
40,888 KB
testcase_25 AC 124 ms
40,876 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
				}
			}
		}
		System.out.println(max);

	}

}
0