結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー fabled2468fabled2468
提出日時 2018-09-24 21:48:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 4,235 ms
コンパイル使用メモリ 75,316 KB
実行使用メモリ 54,592 KB
最終ジャッジ日時 2024-09-24 08:08:25
合計ジャッジ時間 7,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
52,816 KB
testcase_01 AC 135 ms
54,592 KB
testcase_02 AC 136 ms
54,240 KB
testcase_03 AC 138 ms
54,172 KB
testcase_04 AC 137 ms
54,284 KB
testcase_05 AC 122 ms
53,212 KB
testcase_06 AC 135 ms
54,392 KB
testcase_07 AC 134 ms
54,048 KB
testcase_08 AC 134 ms
54,172 KB
testcase_09 AC 134 ms
54,328 KB
testcase_10 AC 120 ms
53,100 KB
testcase_11 AC 132 ms
54,140 KB
testcase_12 AC 133 ms
54,188 KB
testcase_13 AC 137 ms
54,176 KB
testcase_14 AC 138 ms
54,376 KB
testcase_15 AC 136 ms
53,988 KB
testcase_16 AC 134 ms
54,296 KB
testcase_17 AC 135 ms
54,456 KB
testcase_18 AC 136 ms
54,352 KB
testcase_19 AC 122 ms
53,132 KB
testcase_20 AC 136 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.Scanner;

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

        Scanner scan = new Scanner(System.in);
        String value1 = scan.next();
        scan.close();

        // String value1 = "2018/09/24";

        String result = plusTwoDays(value1);
        System.out.println(result);
    }

    public static String plusTwoDays(String value1) {

        LocalDate date = LocalDate.parse(value1, DateTimeFormatter.ofPattern("yyyy/MM/dd"));
        String datePlusTwoDays = date.plusDays(2).format(DateTimeFormatter.ofPattern("yyyy/MM/dd"));

        return datePlusTwoDays;
    }
}
0