結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー k_kadorak_kadora
提出日時 2015-06-16 21:08:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 3,150 ms
コンパイル使用メモリ 76,296 KB
実行使用メモリ 56,304 KB
最終ジャッジ日時 2024-10-13 13:22:21
合計ジャッジ時間 10,376 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 123 ms
41,260 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 109 ms
41,148 KB
testcase_05 AC 105 ms
41,024 KB
testcase_06 AC 118 ms
41,428 KB
testcase_07 AC 113 ms
41,112 KB
testcase_08 AC 107 ms
41,116 KB
testcase_09 AC 122 ms
41,156 KB
testcase_10 AC 118 ms
41,420 KB
testcase_11 WA -
testcase_12 AC 121 ms
41,136 KB
testcase_13 AC 107 ms
41,124 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 110 ms
40,984 KB
testcase_17 AC 124 ms
41,168 KB
testcase_18 AC 118 ms
41,456 KB
testcase_19 AC 115 ms
41,244 KB
testcase_20 AC 107 ms
41,216 KB
testcase_21 AC 117 ms
41,448 KB
testcase_22 WA -
testcase_23 AC 124 ms
41,252 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 121 ms
41,160 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 107 ms
41,016 KB
testcase_30 AC 123 ms
41,360 KB
testcase_31 AC 123 ms
41,384 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 122 ms
41,120 KB
testcase_35 AC 124 ms
41,132 KB
testcase_36 AC 108 ms
41,268 KB
testcase_37 AC 122 ms
41,528 KB
testcase_38 AC 123 ms
41,412 KB
testcase_39 AC 110 ms
41,560 KB
testcase_40 AC 117 ms
41,072 KB
testcase_41 AC 120 ms
41,348 KB
testcase_42 WA -
testcase_43 AC 115 ms
41,008 KB
testcase_44 AC 118 ms
41,288 KB
testcase_45 AC 121 ms
41,160 KB
testcase_46 AC 122 ms
41,404 KB
testcase_47 WA -
testcase_48 AC 108 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki204{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int d,res = 0;
		String[] week0 = new String[2];
		String week;
		int[] hol = new int[14];
		boolean use = false;
		d = sc.nextInt();
		week0[0] = sc.next();
		week0[1] = sc.next();
		week = week0[0] + week0[1];
		for(int i = 0;i<14;i++){
			int h = 0;
			for(int j = 0;j<14-i;j++){
				if(week.charAt(i+j)=='o'){
					h++;
				}else{
					if(use == false){
						h += d;
						j += d-1;
						use = true;
					}else{
						break;
					}
				}
			}
			hol[i] = h;
			use = false;
		}
		for(int i = 0;i<14;i++){
			if(hol[i]>res)res = hol[i];
		}
		System.out.println(res);
	}
}
0