結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-14 20:28:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 415 bytes
コンパイル時間 3,570 ms
コンパイル使用メモリ 77,220 KB
実行使用メモリ 50,448 KB
最終ジャッジ日時 2024-11-18 09:44:55
合計ジャッジ時間 8,256 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
49,972 KB
testcase_01 AC 128 ms
50,120 KB
testcase_02 AC 113 ms
49,932 KB
testcase_03 AC 127 ms
50,048 KB
testcase_04 AC 129 ms
49,924 KB
testcase_05 AC 131 ms
50,200 KB
testcase_06 AC 129 ms
50,152 KB
testcase_07 AC 129 ms
50,040 KB
testcase_08 AC 127 ms
50,448 KB
testcase_09 AC 132 ms
50,016 KB
testcase_10 AC 129 ms
49,892 KB
testcase_11 AC 133 ms
50,196 KB
testcase_12 AC 131 ms
49,976 KB
testcase_13 AC 131 ms
49,808 KB
testcase_14 AC 130 ms
49,876 KB
testcase_15 AC 123 ms
50,040 KB
testcase_16 AC 125 ms
50,172 KB
testcase_17 AC 131 ms
49,976 KB
testcase_18 AC 129 ms
50,268 KB
testcase_19 AC 129 ms
50,000 KB
testcase_20 AC 125 ms
41,292 KB
testcase_21 AC 125 ms
41,540 KB
testcase_22 AC 124 ms
41,308 KB
testcase_23 AC 126 ms
41,340 KB
testcase_24 AC 131 ms
41,316 KB
testcase_25 AC 129 ms
41,472 KB
testcase_26 AC 128 ms
41,292 KB
testcase_27 AC 126 ms
41,440 KB
testcase_28 AC 130 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise81{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String weekOne = sc.next();
    String weekTwo = sc.next();

    String twoWeeks = weekOne + weekTwo;
    String[] weekArray = twoWeeks.split("x");

    Arrays.sort(weekArray);

    System.out.println((weekArray.length == 0) ? 0 : weekArray[weekArray.length - 1].length());
  }
}
0