結果

問題 No.203 ゴールデン・ウィーク(1)
コンテスト
ユーザー spacenaut
提出日時 2016-05-22 16:52:49
言語 Java
(openjdk 26.0.2.1 + ACL)
コンパイル:
javac -J-Duser.language=en -encoding UTF8 -cp /opt/aclib/ac_library.jar _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true -cp .:/opt/aclib/ac_library.jar _class_
結果
AC  
実行時間 53 ms / 1,000 ms
+ 356µs
コード長 500 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,313 ms
コンパイル使用メモリ 87,436 KB
実行使用メモリ 45,384 KB
最終ジャッジ日時 2026-09-25 18:35:02
合計ジャッジ時間 4,433 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge4_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.*;

class No0203{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		str = str + sc.next();
		int res = 0;
		int temp = 0;
		for(int i = 0; i < str.length(); i++){
			if(str.charAt(i) == 'o'){
				for(int j = i; j < str.length(); j++){
					if(str.charAt(j) != 'o'){
						break;
					}
					temp++;
				}
				if(temp > res){
					res = temp;
					i = i + temp - 1;
				}
				temp = 0;
			}
		}
		System.out.println(res);
	}
}
0