結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー darknightdarknight
提出日時 2016-11-28 15:21:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 602 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 75,192 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-11-18 09:56:26
合計ジャッジ時間 6,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,204 KB
testcase_01 AC 123 ms
41,424 KB
testcase_02 AC 128 ms
41,172 KB
testcase_03 AC 127 ms
41,336 KB
testcase_04 AC 128 ms
41,472 KB
testcase_05 AC 112 ms
41,068 KB
testcase_06 AC 127 ms
41,276 KB
testcase_07 AC 128 ms
40,988 KB
testcase_08 AC 123 ms
41,292 KB
testcase_09 AC 126 ms
41,284 KB
testcase_10 AC 122 ms
41,532 KB
testcase_11 AC 126 ms
41,328 KB
testcase_12 AC 126 ms
40,988 KB
testcase_13 AC 125 ms
41,508 KB
testcase_14 AC 123 ms
41,184 KB
testcase_15 AC 127 ms
41,328 KB
testcase_16 AC 111 ms
41,232 KB
testcase_17 AC 128 ms
41,484 KB
testcase_18 AC 125 ms
41,008 KB
testcase_19 AC 124 ms
41,320 KB
testcase_20 AC 128 ms
41,280 KB
testcase_21 AC 126 ms
41,096 KB
testcase_22 AC 132 ms
41,252 KB
testcase_23 AC 128 ms
41,040 KB
testcase_24 AC 132 ms
41,032 KB
testcase_25 AC 127 ms
41,308 KB
testcase_26 AC 127 ms
41,436 KB
testcase_27 AC 124 ms
41,380 KB
testcase_28 AC 124 ms
41,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
	public static void main(String[] args) {
 
	Scanner sc  = new Scanner(System.in);
        
    int cnt1 = 0;
    int ans = 0;

	int f=0;
		
    for(int i=0;i<2;i++){
        String s1 = sc.next();
        char[] c1 = s1.toCharArray();
            for(int k=0;k<s1.length();k++){
                if(c1[k]=='o')
                {
                    f++;
                    ans = Math.max( ans  , f );
                }else{
                    f=0;
                }
        }
    }


        System.out.print(ans);
        System.out.println();
	}
        
}
0