結果
問題 | No.204 ゴールデン・ウィーク(2) |
ユーザー | htensai |
提出日時 | 2019-12-17 16:35:46 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,283 bytes |
コンパイル時間 | 2,160 ms |
コンパイル使用メモリ | 77,888 KB |
実行使用メモリ | 52,120 KB |
最終ジャッジ日時 | 2024-07-03 22:53:32 |
合計ジャッジ時間 | 6,195 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
50,024 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 51 ms
50,316 KB |
testcase_04 | AC | 52 ms
50,288 KB |
testcase_05 | AC | 52 ms
50,020 KB |
testcase_06 | AC | 52 ms
50,040 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 52 ms
50,304 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 52 ms
50,196 KB |
testcase_26 | AC | 54 ms
50,280 KB |
testcase_27 | AC | 53 ms
50,240 KB |
testcase_28 | WA | - |
testcase_29 | AC | 53 ms
50,272 KB |
testcase_30 | AC | 55 ms
50,364 KB |
testcase_31 | AC | 53 ms
50,260 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 56 ms
49,936 KB |
testcase_35 | AC | 53 ms
50,244 KB |
testcase_36 | AC | 57 ms
50,252 KB |
testcase_37 | AC | 52 ms
50,288 KB |
testcase_38 | AC | 53 ms
50,188 KB |
testcase_39 | WA | - |
testcase_40 | AC | 52 ms
50,232 KB |
testcase_41 | AC | 54 ms
49,936 KB |
testcase_42 | WA | - |
testcase_43 | AC | 53 ms
50,188 KB |
testcase_44 | AC | 52 ms
50,032 KB |
testcase_45 | AC | 58 ms
50,368 KB |
testcase_46 | AC | 53 ms
50,296 KB |
testcase_47 | WA | - |
testcase_48 | AC | 52 ms
50,264 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int d = Integer.parseInt(br.readLine()); char[] arr = new char[14]; for (int i = 0; i < 2; i++) { char[] line = br.readLine().toCharArray(); for (int j = 0; j < 7; j++) { arr[i * 7 + j] = line[j]; } } int max = 0; for (int i = 0; i < 14; i++) { boolean norm = false; boolean hor = false; int count = 0; int dCount = 0; for (int j = i; j < 14; j++) { if (arr[j] == 'o') { if (norm) { hor = true; } } else { if (hor) { break; } else { norm = true; } dCount++; if (dCount > d) { break; } } count++; } max = Math.max(max, count); } System.out.println(max); } }