結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-14 20:21:50
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 386 bytes
コンパイル時間 3,586 ms
コンパイル使用メモリ 86,864 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-10-09 13:42:38
合計ジャッジ時間 8,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,256 KB
testcase_01 RE -
testcase_02 AC 131 ms
40,872 KB
testcase_03 AC 125 ms
40,824 KB
testcase_04 AC 124 ms
40,776 KB
testcase_05 AC 126 ms
41,012 KB
testcase_06 AC 116 ms
40,276 KB
testcase_07 AC 127 ms
41,020 KB
testcase_08 AC 128 ms
41,196 KB
testcase_09 AC 129 ms
41,196 KB
testcase_10 AC 128 ms
41,092 KB
testcase_11 AC 125 ms
41,256 KB
testcase_12 AC 124 ms
41,024 KB
testcase_13 AC 124 ms
41,188 KB
testcase_14 AC 123 ms
41,184 KB
testcase_15 AC 127 ms
41,196 KB
testcase_16 AC 127 ms
40,900 KB
testcase_17 AC 126 ms
41,124 KB
testcase_18 AC 130 ms
41,184 KB
testcase_19 AC 127 ms
41,144 KB
testcase_20 AC 126 ms
41,256 KB
testcase_21 AC 127 ms
40,976 KB
testcase_22 AC 130 ms
41,152 KB
testcase_23 AC 131 ms
41,356 KB
testcase_24 AC 117 ms
40,236 KB
testcase_25 AC 128 ms
40,916 KB
testcase_26 AC 129 ms
41,144 KB
testcase_27 AC 129 ms
40,812 KB
testcase_28 AC 132 ms
41,428 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[weekArray.length - 1].length());
  }
}
0