結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-19 18:00:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 75,236 KB
実行使用メモリ 55,508 KB
最終ジャッジ日時 2024-10-12 12:34:36
合計ジャッジ時間 7,992 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 210 ms
55,508 KB
testcase_01 AC 210 ms
54,948 KB
testcase_02 AC 202 ms
55,008 KB
testcase_03 AC 198 ms
54,820 KB
testcase_04 AC 197 ms
54,832 KB
testcase_05 AC 197 ms
55,020 KB
testcase_06 AC 208 ms
54,944 KB
testcase_07 AC 207 ms
54,896 KB
testcase_08 AC 202 ms
55,460 KB
testcase_09 AC 207 ms
54,904 KB
testcase_10 AC 207 ms
55,308 KB
testcase_11 AC 196 ms
54,924 KB
testcase_12 AC 190 ms
54,760 KB
testcase_13 AC 195 ms
54,916 KB
testcase_14 AC 208 ms
54,808 KB
testcase_15 AC 203 ms
55,116 KB
testcase_16 AC 204 ms
54,944 KB
testcase_17 AC 195 ms
54,828 KB
testcase_18 AC 199 ms
54,884 KB
testcase_19 AC 207 ms
54,604 KB
testcase_20 AC 195 ms
55,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.text.*;

public class Main {

    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        final DateFormat DF = new SimpleDateFormat("yyyy/MM/dd");
        Calendar cal = Calendar.getInstance();
        cal.setTime(DF.parse(s));
        cal.add(Calendar.DATE, 2);
        System.out.println(DF.format(cal.getTime()));
    }
}
0