結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー jp_stejp_ste
提出日時 2016-05-12 02:14:46
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,288 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-10-13 14:01:56
合計ジャッジ時間 9,687 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,936 KB
testcase_01 AC 129 ms
41,012 KB
testcase_02 AC 128 ms
41,012 KB
testcase_03 AC 128 ms
40,924 KB
testcase_04 AC 126 ms
40,904 KB
testcase_05 AC 111 ms
39,920 KB
testcase_06 AC 123 ms
40,692 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 126 ms
40,952 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 124 ms
41,064 KB
testcase_23 WA -
testcase_24 AC 124 ms
41,000 KB
testcase_25 AC 129 ms
40,984 KB
testcase_26 AC 110 ms
40,084 KB
testcase_27 AC 126 ms
40,620 KB
testcase_28 AC 111 ms
39,972 KB
testcase_29 AC 123 ms
40,824 KB
testcase_30 AC 125 ms
40,740 KB
testcase_31 AC 120 ms
40,796 KB
testcase_32 AC 124 ms
40,892 KB
testcase_33 AC 126 ms
40,828 KB
testcase_34 AC 126 ms
40,888 KB
testcase_35 AC 111 ms
39,548 KB
testcase_36 AC 125 ms
40,820 KB
testcase_37 AC 127 ms
40,980 KB
testcase_38 AC 125 ms
40,924 KB
testcase_39 AC 111 ms
39,868 KB
testcase_40 AC 123 ms
40,780 KB
testcase_41 AC 123 ms
41,168 KB
testcase_42 AC 124 ms
41,048 KB
testcase_43 AC 125 ms
40,604 KB
testcase_44 AC 127 ms
40,940 KB
testcase_45 AC 123 ms
41,004 KB
testcase_46 AC 127 ms
40,980 KB
testcase_47 AC 125 ms
40,952 KB
testcase_48 AC 124 ms
40,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    static int max = 0;
    static int n;
    
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            n = Integer.parseInt(scan.next());
            String str = scan.next() + scan.next();
            solve(str);
            solve(new StringBuffer(str).reverse().toString());
            System.out.println(max);
        }
    }
    
    static void solve(String str) {
        
        int count = 0;
        for(int i=0; i<str.length(); i++) {
            if(str.charAt(i) == 'o') {
                count++;
            } else {
                break;
            }
        }
        max = Math.max(max, count+n);
        
        count = 0;
        for(int i=str.length()-1; i>=0; i--) {
            if(str.charAt(i) == 'o') {
                count++;
            } else {
                break;
            }
        }
        max = Math.max(max, count+n);
        
        for(int i=0; i<str.length(); i++) {
            if(str.charAt(i) == 'o') {
                int count1 = 0;
                int j;
                for(j=i; j<str.length(); j++) {
                    if(str.charAt(j) == 'o') {
                        count1++;
                    } else {
                        break;
                    }
                }
                
                int count2 = 0;
                int k;
                for(k=j; k<str.length(); k++) {
                    if(str.charAt(k) == 'x') {
                        count2++;
                    } else {
                        break;
                    }
                }
                             
                if(count2 > n) { 
                    count2 = n;
                    max = Math.max(max, count1+count2);
                    
                } else {
                
                    int count3 = 0;
                    int l;
                    for(l=k; l<str.length(); l++) {
                        if(str.charAt(l) == 'o') {
                            count3++;
                        } else {
                            break;
                        }
                    }
                    max = Math.max(max, count1+count2+count3);
                }
            }
        }
    }
}
0