結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー yuichiyoshiyuichiyoshi
提出日時 2020-07-15 15:30:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 55,136 KB
最終ジャッジ日時 2024-11-21 22:30:22
合計ジャッジ時間 7,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
54,964 KB
testcase_01 AC 208 ms
55,108 KB
testcase_02 AC 208 ms
54,856 KB
testcase_03 AC 209 ms
54,948 KB
testcase_04 AC 199 ms
55,072 KB
testcase_05 AC 205 ms
54,984 KB
testcase_06 AC 209 ms
54,760 KB
testcase_07 AC 213 ms
54,892 KB
testcase_08 AC 207 ms
55,132 KB
testcase_09 AC 197 ms
54,684 KB
testcase_10 AC 206 ms
54,844 KB
testcase_11 AC 197 ms
55,092 KB
testcase_12 AC 206 ms
54,900 KB
testcase_13 AC 207 ms
55,136 KB
testcase_14 AC 207 ms
54,924 KB
testcase_15 AC 201 ms
54,572 KB
testcase_16 AC 207 ms
54,964 KB
testcase_17 AC 206 ms
54,824 KB
testcase_18 AC 201 ms
54,896 KB
testcase_19 AC 198 ms
54,816 KB
testcase_20 AC 208 ms
55,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
	public static void main(String[] args) throws Exception{
		Scanner sc = new Scanner(System.in);
        int y;
        int m;
        int d;
        int div;
        Calendar cal = Calendar.getInstance();
        try {
		String s = sc.next();
        SimpleDateFormat sdFormat = new SimpleDateFormat("yyyy/MM/dd");
        Date date = sdFormat.parse(s);
        cal.setTime(date);
        
        cal.add(Calendar.DATE, 2);
        y = cal.get(Calendar.YEAR);
        m = cal.get(Calendar.MONTH) + 1;
        d = cal.get(Calendar.DATE);
        date = cal.getTime();
        System.out.println(sdFormat.format(date));
        
        }catch(Exception e){
         
        }
    }
}
0