結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー nCk_cvnCk_cv
提出日時 2015-11-28 01:16:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 517 bytes
コンパイル時間 2,506 ms
コンパイル使用メモリ 77,244 KB
実行使用メモリ 55,120 KB
最終ジャッジ日時 2024-11-18 09:36:12
合計ジャッジ時間 8,475 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
54,732 KB
testcase_01 AC 157 ms
54,900 KB
testcase_02 AC 162 ms
55,120 KB
testcase_03 AC 168 ms
54,856 KB
testcase_04 AC 166 ms
54,920 KB
testcase_05 AC 154 ms
55,120 KB
testcase_06 AC 153 ms
54,856 KB
testcase_07 AC 151 ms
54,996 KB
testcase_08 AC 154 ms
54,852 KB
testcase_09 AC 162 ms
54,960 KB
testcase_10 AC 156 ms
54,808 KB
testcase_11 AC 163 ms
54,784 KB
testcase_12 AC 160 ms
54,992 KB
testcase_13 AC 158 ms
54,856 KB
testcase_14 AC 158 ms
54,852 KB
testcase_15 AC 158 ms
54,864 KB
testcase_16 AC 157 ms
54,800 KB
testcase_17 AC 137 ms
54,444 KB
testcase_18 AC 154 ms
54,784 KB
testcase_19 AC 157 ms
54,988 KB
testcase_20 AC 158 ms
55,072 KB
testcase_21 AC 161 ms
54,800 KB
testcase_22 AC 165 ms
54,940 KB
testcase_23 AC 159 ms
54,764 KB
testcase_24 AC 164 ms
55,120 KB
testcase_25 AC 161 ms
54,936 KB
testcase_26 AC 166 ms
54,852 KB
testcase_27 AC 158 ms
54,948 KB
testcase_28 AC 160 ms
54,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Map.Entry;
import java.math.*;
import java.awt.geom.*;
import java.io.*;
      
      
public class Main {	

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String in = sc.next() + sc.next() + "x";
		
		char[] str = in.toCharArray();
		int MAX = 0;
		for(int i = 0; i < str.length; i++) {
			for(int j = 0; j < str.length; j++) {
				if(str[i + j] != 'o') {
					MAX = Math.max(MAX, j);
					break;
				}
			}
		}
		System.out.println(MAX);
	}
}
0