結果
問題 | No.203 ゴールデン・ウィーク(1) |
ユーザー |
|
提出日時 | 2016-03-31 12:47:05 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 138 ms / 1,000 ms |
コード長 | 480 bytes |
コンパイル時間 | 2,334 ms |
コンパイル使用メモリ | 76,688 KB |
実行使用メモリ | 54,412 KB |
最終ジャッジ日時 | 2024-11-18 09:40:50 |
合計ジャッジ時間 | 6,686 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 29 |
ソースコード
package yukicoder203; import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); String str1=sc.nextLine(); String str2=sc.nextLine(); String str=str1+str2; int count=0; int max=0; for(int i=0;i<str.length();i++){ if(str.charAt(i)=='o'){ count++; max=Math.max(count, max); }else if(str.charAt(i)==('x')){ max=Math.max(count, max); count=0; } } System.out.println(max); } }