結果
問題 | No.204 ゴールデン・ウィーク(2) |
ユーザー | kou6839 |
提出日時 | 2015-05-09 14:56:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 143 ms / 1,000 ms |
コード長 | 1,067 bytes |
コンパイル時間 | 2,579 ms |
コンパイル使用メモリ | 86,656 KB |
実行使用メモリ | 41,940 KB |
最終ジャッジ日時 | 2024-06-06 18:37:53 |
合計ジャッジ時間 | 10,357 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
40,112 KB |
testcase_01 | AC | 127 ms
41,940 KB |
testcase_02 | AC | 123 ms
39,964 KB |
testcase_03 | AC | 137 ms
41,472 KB |
testcase_04 | AC | 125 ms
40,336 KB |
testcase_05 | AC | 139 ms
41,628 KB |
testcase_06 | AC | 135 ms
41,580 KB |
testcase_07 | AC | 143 ms
41,568 KB |
testcase_08 | AC | 142 ms
41,176 KB |
testcase_09 | AC | 129 ms
40,212 KB |
testcase_10 | AC | 143 ms
41,372 KB |
testcase_11 | AC | 142 ms
41,728 KB |
testcase_12 | AC | 138 ms
41,648 KB |
testcase_13 | AC | 142 ms
41,716 KB |
testcase_14 | AC | 140 ms
41,360 KB |
testcase_15 | AC | 143 ms
41,356 KB |
testcase_16 | AC | 127 ms
40,488 KB |
testcase_17 | AC | 127 ms
40,552 KB |
testcase_18 | AC | 142 ms
41,628 KB |
testcase_19 | AC | 141 ms
41,200 KB |
testcase_20 | AC | 126 ms
41,360 KB |
testcase_21 | AC | 142 ms
41,856 KB |
testcase_22 | AC | 141 ms
41,536 KB |
testcase_23 | AC | 140 ms
41,900 KB |
testcase_24 | AC | 141 ms
41,292 KB |
testcase_25 | AC | 139 ms
41,316 KB |
testcase_26 | AC | 136 ms
41,408 KB |
testcase_27 | AC | 140 ms
41,292 KB |
testcase_28 | AC | 127 ms
41,648 KB |
testcase_29 | AC | 138 ms
41,532 KB |
testcase_30 | AC | 137 ms
41,144 KB |
testcase_31 | AC | 127 ms
41,400 KB |
testcase_32 | AC | 137 ms
41,244 KB |
testcase_33 | AC | 141 ms
41,532 KB |
testcase_34 | AC | 137 ms
41,680 KB |
testcase_35 | AC | 135 ms
41,536 KB |
testcase_36 | AC | 132 ms
41,208 KB |
testcase_37 | AC | 133 ms
41,344 KB |
testcase_38 | AC | 136 ms
41,464 KB |
testcase_39 | AC | 124 ms
40,424 KB |
testcase_40 | AC | 137 ms
41,248 KB |
testcase_41 | AC | 121 ms
41,568 KB |
testcase_42 | AC | 141 ms
41,028 KB |
testcase_43 | AC | 123 ms
39,912 KB |
testcase_44 | AC | 137 ms
41,400 KB |
testcase_45 | AC | 139 ms
41,300 KB |
testcase_46 | AC | 140 ms
41,068 KB |
testcase_47 | AC | 139 ms
41,472 KB |
testcase_48 | AC | 122 ms
41,272 KB |
ソースコード
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"; for(int k=0;k<=n;k++){ String rep =""; for(int w=0;w<k;w++) rep+="o"; //System.out.println(rep); int i=0; tt:while(i+k-1<aa.length()){ for(int j=i;j<i+k;j++){ if(aa.charAt(j)=='o'){ i++; continue tt; } } StringBuilder c = new StringBuilder(aa); c.replace(i, i+k,rep); //System.out.println(c); ans=Math.max(ans, cul(c.toString())); i++; } } System.out.println(ans); } }