結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー 練習生練習生
提出日時 2015-08-18 19:08:11
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 486 bytes
コンパイル時間 4,072 ms
コンパイル使用メモリ 76,200 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-10-09 06:11:07
合計ジャッジ時間 8,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,228 KB
testcase_01 AC 128 ms
41,016 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 114 ms
39,996 KB
testcase_08 AC 112 ms
39,884 KB
testcase_09 AC 126 ms
40,904 KB
testcase_10 AC 128 ms
41,244 KB
testcase_11 AC 128 ms
41,024 KB
testcase_12 AC 115 ms
40,004 KB
testcase_13 AC 128 ms
40,980 KB
testcase_14 AC 132 ms
41,324 KB
testcase_15 AC 128 ms
40,892 KB
testcase_16 AC 128 ms
41,460 KB
testcase_17 AC 128 ms
41,000 KB
testcase_18 AC 112 ms
40,192 KB
testcase_19 AC 126 ms
41,388 KB
testcase_20 AC 130 ms
41,184 KB
testcase_21 AC 129 ms
40,992 KB
testcase_22 AC 128 ms
41,012 KB
testcase_23 AC 131 ms
41,128 KB
testcase_24 AC 130 ms
41,344 KB
testcase_25 AC 126 ms
41,136 KB
testcase_26 AC 127 ms
41,356 KB
testcase_27 AC 114 ms
39,996 KB
testcase_28 AC 128 ms
40,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No203 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String inputData = sc.next() + sc.next();
		sc.close();
		int renkyu = 1;
		int renkyuMax = 0;
		for(int i = 0; i < 13; i++){
			if(inputData.charAt(i) == 'o' && inputData.charAt(i) == inputData.charAt(i + 1)){
				renkyu++;
				if(renkyu > renkyuMax){
					renkyuMax = renkyu;
				}
			}else{
				renkyu = 1;
			}
		}
		System.out.println(renkyuMax);
	}
}
0