結果
問題 | No.204 ゴールデン・ウィーク(2) |
ユーザー | kou6839 |
提出日時 | 2015-05-09 14:40:18 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 904 bytes |
コンパイル時間 | 2,111 ms |
コンパイル使用メモリ | 79,372 KB |
実行使用メモリ | 56,232 KB |
最終ジャッジ日時 | 2024-10-13 12:12:15 |
合計ジャッジ時間 | 9,413 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 126 ms
54,120 KB |
testcase_02 | WA | - |
testcase_03 | AC | 125 ms
53,948 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 121 ms
53,128 KB |
testcase_08 | AC | 121 ms
53,996 KB |
testcase_09 | AC | 118 ms
53,896 KB |
testcase_10 | AC | 112 ms
53,060 KB |
testcase_11 | AC | 122 ms
54,104 KB |
testcase_12 | AC | 131 ms
53,804 KB |
testcase_13 | AC | 126 ms
53,976 KB |
testcase_14 | AC | 124 ms
53,848 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 128 ms
53,808 KB |
testcase_19 | AC | 116 ms
52,788 KB |
testcase_20 | AC | 116 ms
52,732 KB |
testcase_21 | AC | 119 ms
53,084 KB |
testcase_22 | AC | 127 ms
53,956 KB |
testcase_23 | AC | 127 ms
53,828 KB |
testcase_24 | AC | 131 ms
54,020 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 121 ms
53,964 KB |
testcase_30 | AC | 121 ms
54,164 KB |
testcase_31 | AC | 110 ms
52,916 KB |
testcase_32 | AC | 117 ms
53,640 KB |
testcase_33 | AC | 124 ms
54,236 KB |
testcase_34 | WA | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | AC | 125 ms
54,256 KB |
testcase_38 | AC | 123 ms
54,204 KB |
testcase_39 | AC | 122 ms
54,088 KB |
testcase_40 | RE | - |
testcase_41 | WA | - |
testcase_42 | AC | 131 ms
54,108 KB |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | AC | 121 ms
53,824 KB |
testcase_46 | WA | - |
testcase_47 | AC | 122 ms
53,780 KB |
testcase_48 | WA | - |
ソースコード
import java.io.File; import java.util.*; public class Main { static int cul(String a){ int ans=0; for(int i=0;i<a.length();i++){ if(a.charAt(i)=='o'){ int temp=1; int j=1; while(i+j<a.length() && a.charAt(i+j)=='o'){ j++; temp++; } ans=Math.max(ans, temp); i+=j; } } return ans; } public static void main(String[] args){ // TODO 自動生成されたメソッド・スタブ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String a = sc.next(); String b = sc.next(); a+=b; int ans=0; String aa ="xxxxxxxxxxxxxxxxxxxxxxxx"; aa+=a; aa+="xxxxxxxxxxxxxxxxxxxx"; String repString=""; for(int i=0;i<n;i++) repString+="o"; int i=0; while(i+n-1<aa.length()){ StringBuilder c = new StringBuilder(aa); c.replace(i, i+n-1,repString); ans=Math.max(ans, cul(c.toString())); i++; } System.out.println(ans); } }