結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-07 00:23:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 717 bytes
コンパイル時間 4,076 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 54,680 KB
最終ジャッジ日時 2024-11-07 13:24:13
合計ジャッジ時間 9,079 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,208 KB
testcase_01 AC 136 ms
54,044 KB
testcase_02 AC 136 ms
53,988 KB
testcase_03 AC 138 ms
54,256 KB
testcase_04 AC 139 ms
54,260 KB
testcase_05 AC 137 ms
54,204 KB
testcase_06 AC 139 ms
54,572 KB
testcase_07 AC 138 ms
54,368 KB
testcase_08 AC 137 ms
54,144 KB
testcase_09 AC 137 ms
54,680 KB
testcase_10 AC 140 ms
54,020 KB
testcase_11 AC 135 ms
54,372 KB
testcase_12 AC 134 ms
53,988 KB
testcase_13 AC 135 ms
54,232 KB
testcase_14 AC 135 ms
54,196 KB
testcase_15 AC 138 ms
54,072 KB
testcase_16 AC 137 ms
54,276 KB
testcase_17 AC 133 ms
54,388 KB
testcase_18 AC 133 ms
54,028 KB
testcase_19 AC 124 ms
53,316 KB
testcase_20 AC 141 ms
54,204 KB
testcase_21 AC 138 ms
54,364 KB
testcase_22 AC 139 ms
53,996 KB
testcase_23 AC 136 ms
53,956 KB
testcase_24 AC 137 ms
54,392 KB
testcase_25 AC 135 ms
54,288 KB
testcase_26 AC 135 ms
54,368 KB
testcase_27 AC 139 ms
54,400 KB
testcase_28 AC 137 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.Optional;

// https://yukicoder.me/problems/no/203
public class GW203 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    String firstWeek = sc.next();
    String secondWeek = sc.next();
    String goldenWeek = firstWeek + secondWeek;

    List<String> holidayList = Arrays.asList(goldenWeek.split("x"));

    Optional<String> maxHoliday = holidayList.stream().max(Comparator.comparingInt(String::length));
    System.out.println(maxHoliday.orElse("").length());
  }
}
0