結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 21:38:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 522 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 76,496 KB
実行使用メモリ 54,932 KB
最終ジャッジ日時 2024-11-18 09:55:10
合計ジャッジ時間 6,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,236 KB
testcase_01 AC 107 ms
53,016 KB
testcase_02 AC 120 ms
53,884 KB
testcase_03 AC 120 ms
54,232 KB
testcase_04 AC 118 ms
54,016 KB
testcase_05 AC 118 ms
54,020 KB
testcase_06 AC 120 ms
54,228 KB
testcase_07 AC 120 ms
54,064 KB
testcase_08 AC 118 ms
53,888 KB
testcase_09 AC 120 ms
54,120 KB
testcase_10 AC 105 ms
52,952 KB
testcase_11 AC 108 ms
52,868 KB
testcase_12 AC 123 ms
53,812 KB
testcase_13 AC 121 ms
53,752 KB
testcase_14 AC 120 ms
53,868 KB
testcase_15 AC 114 ms
53,912 KB
testcase_16 AC 114 ms
53,832 KB
testcase_17 AC 102 ms
54,932 KB
testcase_18 AC 120 ms
54,264 KB
testcase_19 AC 117 ms
54,380 KB
testcase_20 AC 115 ms
53,036 KB
testcase_21 AC 118 ms
54,276 KB
testcase_22 AC 121 ms
54,048 KB
testcase_23 AC 105 ms
52,916 KB
testcase_24 AC 114 ms
53,644 KB
testcase_25 AC 114 ms
53,984 KB
testcase_26 AC 107 ms
52,832 KB
testcase_27 AC 119 ms
54,036 KB
testcase_28 AC 116 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String A = sc.next();
        String B = sc.next();
        String C = A+B;
        int a = C.length();
        int r = 0;
        while(a>0){
            String t = "";
            for(int i=0; i<a; i++){
                t=t+"o";
            }
            if( C.indexOf(t)!=-1 ){
                break;
            }
            a--;
        }
        System.out.println(a);
    }
}
0