結果
問題 | No.203 ゴールデン・ウィーク(1) |
ユーザー | kuramu |
提出日時 | 2016-01-26 00:09:53 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 59 ms / 1,000 ms |
コード長 | 939 bytes |
コンパイル時間 | 2,116 ms |
コンパイル使用メモリ | 76,320 KB |
実行使用メモリ | 50,580 KB |
最終ジャッジ日時 | 2024-11-18 09:39:30 |
合計ジャッジ時間 | 4,599 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
50,020 KB |
testcase_01 | AC | 57 ms
50,372 KB |
testcase_02 | AC | 56 ms
50,520 KB |
testcase_03 | AC | 57 ms
50,408 KB |
testcase_04 | AC | 56 ms
50,516 KB |
testcase_05 | AC | 57 ms
50,488 KB |
testcase_06 | AC | 57 ms
50,520 KB |
testcase_07 | AC | 57 ms
50,460 KB |
testcase_08 | AC | 57 ms
50,428 KB |
testcase_09 | AC | 58 ms
50,368 KB |
testcase_10 | AC | 58 ms
50,500 KB |
testcase_11 | AC | 57 ms
50,580 KB |
testcase_12 | AC | 57 ms
50,176 KB |
testcase_13 | AC | 57 ms
50,256 KB |
testcase_14 | AC | 57 ms
50,524 KB |
testcase_15 | AC | 57 ms
50,152 KB |
testcase_16 | AC | 57 ms
50,064 KB |
testcase_17 | AC | 58 ms
50,400 KB |
testcase_18 | AC | 58 ms
50,308 KB |
testcase_19 | AC | 58 ms
50,436 KB |
testcase_20 | AC | 56 ms
50,132 KB |
testcase_21 | AC | 59 ms
50,472 KB |
testcase_22 | AC | 58 ms
50,508 KB |
testcase_23 | AC | 59 ms
50,360 KB |
testcase_24 | AC | 56 ms
50,100 KB |
testcase_25 | AC | 57 ms
50,036 KB |
testcase_26 | AC | 57 ms
50,428 KB |
testcase_27 | AC | 57 ms
50,272 KB |
testcase_28 | AC | 57 ms
50,332 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in)); try { String line = stdReader.readLine(); String line2 = stdReader.readLine(); int max = -1; int count = 0; for(int i=0;i<line.length();i++){ if((""+line.charAt(i)).equals("o")){ count++; }else{ if(max<count)max = count; count = 0; } } for(int i=0;i<line2.length();i++){ if((""+line2.charAt(i)).equals("o")){ count++; }else{ if(max<count)max = count; count = 0; } } if(max<count)max = count; System.out.println(max); } catch (IOException e) { e.printStackTrace(); } } }