結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー ぴろずぴろず
提出日時 2015-05-08 23:23:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 705 bytes
コンパイル時間 2,287 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-06-06 18:33:27
合計ジャッジ時間 10,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,932 KB
testcase_01 AC 129 ms
41,672 KB
testcase_02 AC 131 ms
41,272 KB
testcase_03 AC 132 ms
40,996 KB
testcase_04 AC 131 ms
41,340 KB
testcase_05 AC 130 ms
41,516 KB
testcase_06 AC 133 ms
41,532 KB
testcase_07 AC 129 ms
41,000 KB
testcase_08 AC 131 ms
41,344 KB
testcase_09 AC 131 ms
41,068 KB
testcase_10 AC 134 ms
41,072 KB
testcase_11 AC 119 ms
40,000 KB
testcase_12 AC 131 ms
41,200 KB
testcase_13 AC 131 ms
41,524 KB
testcase_14 AC 131 ms
41,176 KB
testcase_15 AC 127 ms
40,824 KB
testcase_16 AC 133 ms
41,032 KB
testcase_17 AC 130 ms
41,104 KB
testcase_18 AC 133 ms
41,352 KB
testcase_19 AC 116 ms
40,300 KB
testcase_20 AC 131 ms
40,788 KB
testcase_21 AC 132 ms
41,164 KB
testcase_22 AC 133 ms
41,060 KB
testcase_23 AC 132 ms
41,424 KB
testcase_24 AC 120 ms
40,360 KB
testcase_25 AC 129 ms
41,200 KB
testcase_26 AC 131 ms
41,292 KB
testcase_27 AC 116 ms
39,788 KB
testcase_28 AC 131 ms
41,112 KB
testcase_29 AC 128 ms
40,732 KB
testcase_30 AC 129 ms
41,200 KB
testcase_31 AC 131 ms
41,348 KB
testcase_32 AC 116 ms
40,000 KB
testcase_33 AC 130 ms
40,900 KB
testcase_34 AC 131 ms
41,400 KB
testcase_35 AC 132 ms
41,068 KB
testcase_36 AC 132 ms
41,140 KB
testcase_37 AC 134 ms
41,384 KB
testcase_38 AC 133 ms
41,064 KB
testcase_39 AC 134 ms
41,412 KB
testcase_40 AC 132 ms
41,472 KB
testcase_41 AC 133 ms
40,944 KB
testcase_42 AC 134 ms
40,920 KB
testcase_43 AC 133 ms
41,356 KB
testcase_44 AC 134 ms
41,076 KB
testcase_45 AC 133 ms
41,792 KB
testcase_46 AC 133 ms
41,156 KB
testcase_47 AC 133 ms
41,328 KB
testcase_48 AC 134 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no204a;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		char[] c = new char[100];
		for(int i=0;i<2;i++) {
			char[] s = sc.next().toCharArray();
			for(int j=0;j<7;j++) {
				c[20+i*7+j] = s[j];
			}
		}
		int max = 0;
		for(int k=0;k<100;k++) {
			int now = 0;
			int yukyuu = 0;
			for(int i=0;i<100;i++) {
				if (i == k) {
					yukyuu = d;
				}
				if (c[i] == 'o') {
					now++;
					max = Math.max(max, now);
					yukyuu = 0;
				}else if(yukyuu > 0){
					now++;
					max = Math.max(max, now);
					yukyuu--;
				}else{
					now = 0;
				}
			}
		}
		System.out.println(max);
	}
}
0