結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-30 12:12:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 812 bytes
コンパイル時間 3,219 ms
コンパイル使用メモリ 78,432 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-11-18 09:43:21
合計ジャッジ時間 7,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,036 KB
testcase_01 AC 119 ms
54,076 KB
testcase_02 AC 118 ms
54,120 KB
testcase_03 AC 117 ms
53,976 KB
testcase_04 AC 110 ms
53,496 KB
testcase_05 AC 104 ms
52,928 KB
testcase_06 AC 118 ms
54,100 KB
testcase_07 AC 114 ms
54,064 KB
testcase_08 AC 120 ms
54,140 KB
testcase_09 AC 118 ms
54,016 KB
testcase_10 AC 120 ms
54,176 KB
testcase_11 AC 118 ms
54,108 KB
testcase_12 AC 120 ms
53,988 KB
testcase_13 AC 121 ms
54,152 KB
testcase_14 AC 118 ms
54,108 KB
testcase_15 AC 121 ms
54,052 KB
testcase_16 AC 115 ms
54,000 KB
testcase_17 AC 120 ms
53,844 KB
testcase_18 AC 116 ms
54,148 KB
testcase_19 AC 104 ms
53,176 KB
testcase_20 AC 116 ms
54,044 KB
testcase_21 AC 116 ms
54,180 KB
testcase_22 AC 120 ms
54,164 KB
testcase_23 AC 117 ms
54,124 KB
testcase_24 AC 120 ms
54,060 KB
testcase_25 AC 121 ms
53,956 KB
testcase_26 AC 117 ms
53,880 KB
testcase_27 AC 118 ms
54,024 KB
testcase_28 AC 120 ms
53,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.ArrayList;
import java.util.Scanner;

public class Yuki203 {

	public static void main(String[] args) {
	
		Scanner scan = new Scanner(System.in);
		String str = scan.next();
		String str1 = scan.next();
		ArrayList<String> strArray = new ArrayList<String>();
		scan.close();
		characterSet(strArray,str);
		characterSet(strArray,str1);
		
		int num = 0;
		int ans = 0;
		for ( String i : strArray ){
			if ("o".equals(i)) {
				num++;
				
				if(ans < num){
					ans = num;
				}
				
			} else {
				
				if(ans < num){
					ans = num;
				}
				num = 0;
			}
		}
		System.out.println(ans);

	}
	
	private static void characterSet(ArrayList<String> strArray ,String str) {

		for(int i = 0; i < str.length(); i++ ){
			strArray.add(String.valueOf(str.charAt(i)));
		}
	}
}
0