結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-14 18:01:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 514 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 76,608 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-11-18 10:16:40
合計ジャッジ時間 6,392 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,076 KB
testcase_01 AC 102 ms
41,356 KB
testcase_02 AC 105 ms
41,440 KB
testcase_03 AC 132 ms
41,324 KB
testcase_04 AC 115 ms
41,476 KB
testcase_05 AC 115 ms
41,212 KB
testcase_06 AC 114 ms
41,420 KB
testcase_07 AC 106 ms
41,012 KB
testcase_08 AC 117 ms
41,392 KB
testcase_09 AC 106 ms
41,396 KB
testcase_10 AC 100 ms
41,212 KB
testcase_11 AC 100 ms
41,240 KB
testcase_12 AC 117 ms
41,288 KB
testcase_13 AC 116 ms
41,108 KB
testcase_14 AC 118 ms
41,108 KB
testcase_15 AC 120 ms
41,196 KB
testcase_16 AC 118 ms
41,404 KB
testcase_17 AC 103 ms
41,220 KB
testcase_18 AC 114 ms
41,292 KB
testcase_19 AC 117 ms
41,212 KB
testcase_20 AC 118 ms
41,268 KB
testcase_21 AC 105 ms
41,068 KB
testcase_22 AC 115 ms
41,460 KB
testcase_23 AC 122 ms
41,272 KB
testcase_24 AC 108 ms
41,440 KB
testcase_25 AC 99 ms
41,268 KB
testcase_26 AC 115 ms
41,312 KB
testcase_27 AC 114 ms
41,152 KB
testcase_28 AC 117 ms
40,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] s = new String[14];
		String s1 = sc.next() + sc.next();
		for(int i = 0 ; i < 14 ; i++) s[i] = "" + s1.charAt(i);
		int ans = 0;
		for(int i = 0 ; i < 14 ; i++) {
			if(s[i].equals("o")) {
				for(int j = i ; j < 14 ; j++) {
					if(s[j].equals("o")) {
						ans = Math.max(ans, j - i + 1);
					} else {
						break;
					}
				}
			}
		}
		System.out.println(ans);
 	}
}
0