結果
問題 | No.672 最長AB列 |
ユーザー | ほっしいー |
提出日時 | 2018-04-14 22:29:40 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 639 bytes |
コンパイル時間 | 3,317 ms |
コンパイル使用メモリ | 75,084 KB |
実行使用メモリ | 75,052 KB |
最終ジャッジ日時 | 2024-06-27 20:09:16 |
合計ジャッジ時間 | 8,566 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 126 ms
41,072 KB |
testcase_02 | AC | 122 ms
40,640 KB |
testcase_03 | AC | 126 ms
40,896 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 396 ms
57,308 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import java.util.Scanner; public class 最長AB列 { public static int getAns(String str) { String a="A" ; String[] ar = str.split(""); int k,l; int m=0; int ans=0; outside:for(k=2;k<=ar.length/2;k=k*2) { int x=0; int y=0; for(l=0;l<=ar.length-k;l++) { for(int i=0;i<k;i++) { if(ar[i+l].equals(a)) x++; else y++; } if(x==y) { m=k; break; }else if(l==ar.length-k) break outside; } } return ans=m; } public static void main(String[] args) { Scanner sc=new Scanner(System.in); String str = sc.next(); System.out.print(getAns(str)); } }