結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー ぴろずぴろず
提出日時 2015-05-08 22:22:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 476 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 54,780 KB
最終ジャッジ日時 2024-11-18 08:54:02
合計ジャッジ時間 6,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,192 KB
testcase_01 AC 106 ms
53,540 KB
testcase_02 AC 118 ms
54,100 KB
testcase_03 AC 113 ms
53,712 KB
testcase_04 AC 113 ms
54,060 KB
testcase_05 AC 118 ms
54,024 KB
testcase_06 AC 117 ms
54,028 KB
testcase_07 AC 117 ms
53,772 KB
testcase_08 AC 100 ms
52,764 KB
testcase_09 AC 101 ms
53,932 KB
testcase_10 AC 112 ms
53,888 KB
testcase_11 AC 114 ms
54,152 KB
testcase_12 AC 101 ms
52,796 KB
testcase_13 AC 113 ms
53,992 KB
testcase_14 AC 117 ms
54,048 KB
testcase_15 AC 105 ms
52,952 KB
testcase_16 AC 117 ms
53,956 KB
testcase_17 AC 105 ms
52,984 KB
testcase_18 AC 118 ms
54,148 KB
testcase_19 AC 101 ms
52,820 KB
testcase_20 AC 100 ms
52,948 KB
testcase_21 AC 116 ms
54,004 KB
testcase_22 AC 110 ms
52,668 KB
testcase_23 AC 105 ms
54,780 KB
testcase_24 AC 107 ms
54,300 KB
testcase_25 AC 116 ms
53,992 KB
testcase_26 AC 125 ms
53,936 KB
testcase_27 AC 120 ms
54,036 KB
testcase_28 AC 120 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no203;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] c = new char[14];
		for(int i=0;i<2;i++) {
			char[] s = sc.next().toCharArray();
			for(int j=0;j<7;j++) {
				c[i*7+j] = s[j];
			}
		}
		int max = 0;
		int now = 0;
		for(int i=0;i<14;i++) {
			if (c[i] == 'o') {
				now++;
				max = Math.max(max, now);
			}else{
				now = 0;
			}
		}
		System.out.println(max);
	}

}
0