結果
問題 | No.204 ゴールデン・ウィーク(2) |
ユーザー | r.suzuki |
提出日時 | 2015-12-31 22:57:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,454 bytes |
コンパイル時間 | 3,511 ms |
コンパイル使用メモリ | 87,644 KB |
実行使用メモリ | 37,300 KB |
最終ジャッジ日時 | 2024-10-13 13:49:59 |
合計ジャッジ時間 | 7,188 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
37,076 KB |
testcase_01 | AC | 48 ms
37,000 KB |
testcase_02 | AC | 50 ms
36,776 KB |
testcase_03 | AC | 50 ms
36,864 KB |
testcase_04 | AC | 50 ms
36,660 KB |
testcase_05 | AC | 51 ms
36,636 KB |
testcase_06 | AC | 51 ms
37,300 KB |
testcase_07 | AC | 51 ms
37,060 KB |
testcase_08 | AC | 49 ms
36,916 KB |
testcase_09 | AC | 50 ms
36,948 KB |
testcase_10 | AC | 53 ms
36,976 KB |
testcase_11 | AC | 52 ms
37,136 KB |
testcase_12 | AC | 51 ms
37,132 KB |
testcase_13 | AC | 52 ms
36,812 KB |
testcase_14 | AC | 54 ms
37,120 KB |
testcase_15 | AC | 51 ms
37,224 KB |
testcase_16 | AC | 49 ms
37,244 KB |
testcase_17 | AC | 50 ms
37,288 KB |
testcase_18 | AC | 51 ms
36,660 KB |
testcase_19 | AC | 50 ms
37,104 KB |
testcase_20 | AC | 51 ms
37,108 KB |
testcase_21 | AC | 51 ms
37,100 KB |
testcase_22 | AC | 51 ms
36,568 KB |
testcase_23 | AC | 49 ms
36,872 KB |
testcase_24 | AC | 50 ms
36,784 KB |
testcase_25 | AC | 50 ms
36,988 KB |
testcase_26 | AC | 52 ms
37,120 KB |
testcase_27 | AC | 48 ms
37,204 KB |
testcase_28 | AC | 51 ms
37,196 KB |
testcase_29 | AC | 51 ms
37,060 KB |
testcase_30 | AC | 51 ms
37,112 KB |
testcase_31 | AC | 49 ms
37,156 KB |
testcase_32 | AC | 51 ms
37,120 KB |
testcase_33 | AC | 53 ms
36,820 KB |
testcase_34 | AC | 52 ms
37,156 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 50 ms
36,660 KB |
testcase_38 | AC | 50 ms
36,972 KB |
testcase_39 | AC | 51 ms
37,008 KB |
testcase_40 | WA | - |
testcase_41 | AC | 50 ms
36,944 KB |
testcase_42 | AC | 52 ms
37,124 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 53 ms
37,052 KB |
testcase_46 | AC | 50 ms
37,120 KB |
testcase_47 | AC | 52 ms
37,040 KB |
testcase_48 | AC | 51 ms
37,200 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; public class No_204 { static char holiday; static char weekday; // 連続する平日の数を返すメソッド static int countWeekday(StringBuilder sb, int i, int c, int v) { /* * 最後の文字が渡されたとき、 または判定箇所の文字がholidayだった時、 または連続する休日数が有休数を超えた時終了する。 */ if (i == sb.length() - 1 || sb.charAt(i + 1) == holiday || c >= v) { return c; } else { return countWeekday(sb, ++i, ++c, v); } } // 連続する休日の数を返すメソッド static int countHoliday(StringBuilder sb, int i, int c) { /* * 最後の文字が渡されたとき、 または判定箇所の文字がweekdayだった時終了する。 */ if (i == sb.length() - 1 || sb.charAt(i + 1) == weekday) { return c; } else { return countHoliday(sb, ++i, ++c); } } // 連続する休日の最大数を返すメソッド static int countMaxHoliday(StringBuilder sb, int c) { int max = 0; for (int i = 0; i < sb.length();) { if (sb.charAt(i) == holiday) { int m = countHoliday(sb, i, 1); max = Math.max(max, m); i += m; } else { i++; } } return max; } public static void main(String[] args) throws IOException { ArrayList<StringBuilder> list = new ArrayList<StringBuilder>(); InputStreamReader in = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(in); int vacation = Integer.parseInt(br.readLine()); StringBuilder calendar = new StringBuilder(br.readLine() + br.readLine()); holiday = 'o'; weekday = 'x'; int maxHoliday = 0; // 2週間の前後に有休の数だけ平日を追加 for (int i = 0; i < vacation; i++) { calendar.insert(0, weekday); calendar.append(weekday); } for (int i = 0; i < calendar.length(); i++) { if (calendar.charAt(i) == weekday) { int count = countWeekday(calendar, i, 1, vacation); StringBuilder weeks = new StringBuilder(calendar);// コピーを作成 for (int j = 0; j < count; j++) { weeks.setCharAt(i + j, holiday); } list.add(weeks);// コピーをリストに格納 } } for (int i = 0; i < list.size(); i++) { int m = countMaxHoliday(list.get(i), 0); maxHoliday = Math.max(maxHoliday, m); } System.out.println(maxHoliday); br.close(); } }