結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー uafr_csuafr_cs
提出日時 2015-05-16 02:05:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 463 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 76,904 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-11-18 09:18:34
合計ジャッジ時間 6,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,048 KB
testcase_01 AC 101 ms
52,752 KB
testcase_02 AC 116 ms
54,056 KB
testcase_03 AC 103 ms
52,948 KB
testcase_04 AC 103 ms
52,748 KB
testcase_05 AC 115 ms
54,172 KB
testcase_06 AC 117 ms
54,200 KB
testcase_07 AC 103 ms
52,956 KB
testcase_08 AC 118 ms
53,964 KB
testcase_09 AC 103 ms
52,916 KB
testcase_10 AC 106 ms
53,132 KB
testcase_11 AC 104 ms
52,740 KB
testcase_12 AC 117 ms
53,980 KB
testcase_13 AC 109 ms
53,388 KB
testcase_14 AC 109 ms
52,964 KB
testcase_15 AC 104 ms
52,812 KB
testcase_16 AC 112 ms
54,236 KB
testcase_17 AC 115 ms
53,848 KB
testcase_18 AC 103 ms
52,748 KB
testcase_19 AC 116 ms
54,124 KB
testcase_20 AC 118 ms
54,068 KB
testcase_21 AC 113 ms
54,056 KB
testcase_22 AC 104 ms
52,848 KB
testcase_23 AC 113 ms
54,048 KB
testcase_24 AC 114 ms
54,152 KB
testcase_25 AC 98 ms
54,104 KB
testcase_26 AC 118 ms
54,256 KB
testcase_27 AC 118 ms
54,112 KB
testcase_28 AC 121 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final char[] days = (sc.next() + sc.next()).toCharArray();
		
		int count = 0, max = 0;
		for(char c : days){
			if(c == 'o'){
				count++;
			}else{
				max = Math.max(max, count);
				count = 0;
			}
		}
		max = Math.max(max, count);
		
		System.out.println(max);
		
	}
	
}
0