結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー dazydazy
提出日時 2017-02-23 17:50:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 618 bytes
コンパイル時間 3,837 ms
コンパイル使用メモリ 81,244 KB
実行使用メモリ 48,340 KB
最終ジャッジ日時 2024-11-18 10:04:26
合計ジャッジ時間 7,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
41,164 KB
testcase_01 AC 97 ms
41,108 KB
testcase_02 AC 103 ms
41,188 KB
testcase_03 AC 102 ms
41,276 KB
testcase_04 AC 115 ms
41,200 KB
testcase_05 AC 102 ms
41,296 KB
testcase_06 AC 113 ms
41,228 KB
testcase_07 AC 113 ms
41,232 KB
testcase_08 AC 113 ms
41,452 KB
testcase_09 AC 112 ms
41,380 KB
testcase_10 AC 115 ms
41,432 KB
testcase_11 AC 113 ms
41,348 KB
testcase_12 AC 117 ms
41,300 KB
testcase_13 AC 109 ms
41,288 KB
testcase_14 AC 98 ms
41,228 KB
testcase_15 AC 114 ms
41,424 KB
testcase_16 AC 120 ms
41,196 KB
testcase_17 AC 114 ms
41,276 KB
testcase_18 AC 116 ms
41,252 KB
testcase_19 AC 101 ms
41,124 KB
testcase_20 AC 112 ms
41,380 KB
testcase_21 AC 113 ms
41,292 KB
testcase_22 AC 111 ms
41,408 KB
testcase_23 AC 113 ms
41,128 KB
testcase_24 AC 111 ms
41,144 KB
testcase_25 AC 102 ms
41,100 KB
testcase_26 AC 115 ms
48,340 KB
testcase_27 AC 114 ms
41,428 KB
testcase_28 AC 114 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int ans = 0;
        int tmp = 0;
        boolean con = false;
        String days = scan.next() + scan.next();

        for (int i = 0; i < 14; i++) {
            if (days.substring(i, i+1).equals("o")) {
                if (con) tmp++;
                else tmp = 1;
                if (tmp > ans) ans = tmp;
                con = true;
            } else {
                tmp = 0;
                con = false;
            }
        }

        System.out.println(ans);
    }
}
0