結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-28 18:45:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 79,472 KB
実行使用メモリ 43,000 KB
最終ジャッジ日時 2024-10-03 03:48:53
合計ジャッジ時間 6,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
42,444 KB
testcase_01 AC 147 ms
42,296 KB
testcase_02 AC 145 ms
42,572 KB
testcase_03 AC 147 ms
42,880 KB
testcase_04 AC 153 ms
42,396 KB
testcase_05 AC 156 ms
42,588 KB
testcase_06 AC 158 ms
42,864 KB
testcase_07 AC 158 ms
42,848 KB
testcase_08 AC 159 ms
42,840 KB
testcase_09 AC 156 ms
42,712 KB
testcase_10 AC 165 ms
42,700 KB
testcase_11 AC 164 ms
42,552 KB
testcase_12 AC 143 ms
42,184 KB
testcase_13 AC 147 ms
42,520 KB
testcase_14 AC 141 ms
42,228 KB
testcase_15 AC 135 ms
42,080 KB
testcase_16 AC 156 ms
42,372 KB
testcase_17 AC 155 ms
42,212 KB
testcase_18 AC 170 ms
42,744 KB
testcase_19 AC 156 ms
43,000 KB
testcase_20 AC 141 ms
42,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    String[] sp = s.split("/", 0);
    int[] days = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
    int y = Integer.parseInt(sp[0]);
    int m = Integer.parseInt(sp[1]);
    int d = Integer.parseInt(sp[2]);
    if((y % 4 == 0) && !((y % 100 == 0) && (y % 400 != 0))) days[2] = 29;
    String ans = "";
    if((d + 2) <= days[m]) {
      String sm = String.valueOf(m);
      String sd = String.valueOf(d + 2);
      if(m < 10) sm = "0" + sm;
      if(d < 8) sd = "0" + sd;
      ans = y + "/" + sm + "/" + sd;
    } else {
      int rd = d + 2 - days[m];
      if(m < 12) {
        String sm = String.valueOf(m + 1);
        if(m < 9) sm = "0" + sm;
        ans = y + "/" + sm + "/" + "0" + rd;
      } else {
        ans = (y + 1) + "/01/" + "0" + rd;  
      }
    }
    System.out.println(ans);
  }
}
0