結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー spaciaspacia
提出日時 2015-12-16 17:04:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 560 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 75,276 KB
実行使用メモリ 50,656 KB
最終ジャッジ日時 2024-11-18 09:37:06
合計ジャッジ時間 5,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
50,388 KB
testcase_01 AC 59 ms
50,448 KB
testcase_02 AC 59 ms
50,624 KB
testcase_03 AC 59 ms
50,408 KB
testcase_04 AC 59 ms
50,480 KB
testcase_05 AC 59 ms
50,524 KB
testcase_06 AC 58 ms
50,656 KB
testcase_07 AC 57 ms
50,488 KB
testcase_08 AC 59 ms
50,492 KB
testcase_09 AC 57 ms
50,260 KB
testcase_10 AC 58 ms
50,240 KB
testcase_11 AC 58 ms
50,496 KB
testcase_12 AC 58 ms
50,332 KB
testcase_13 AC 58 ms
50,532 KB
testcase_14 AC 66 ms
50,008 KB
testcase_15 AC 57 ms
50,492 KB
testcase_16 AC 58 ms
50,320 KB
testcase_17 AC 58 ms
50,484 KB
testcase_18 AC 59 ms
50,500 KB
testcase_19 AC 57 ms
50,468 KB
testcase_20 AC 59 ms
50,564 KB
testcase_21 AC 59 ms
50,388 KB
testcase_22 AC 63 ms
50,544 KB
testcase_23 AC 59 ms
50,152 KB
testcase_24 AC 58 ms
50,576 KB
testcase_25 AC 58 ms
50,416 KB
testcase_26 AC 57 ms
50,152 KB
testcase_27 AC 63 ms
50,516 KB
testcase_28 AC 58 ms
50,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main203 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String line1 = br.readLine();
		String line2 = br.readLine();
		String line3 = line1 + line2;
		
		int ans = 0, cnt = 0;
		for (int i = 0; i < line3.length(); i++) {
			char c = line3.charAt(i);
			if (c == 'o') {
				cnt++;
			} else {
				ans = Math.max(ans, cnt);
				cnt = 0;
			}
		}
		System.out.println(Math.max(ans , cnt));
	}
}
0