結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー yuichiyoshiyuichiyoshi
提出日時 2020-07-15 15:30:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 3,172 ms
コンパイル使用メモリ 75,180 KB
実行使用メモリ 43,388 KB
最終ジャッジ日時 2024-05-01 17:10:45
合計ジャッジ時間 8,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
42,836 KB
testcase_01 AC 218 ms
42,960 KB
testcase_02 AC 216 ms
43,004 KB
testcase_03 AC 214 ms
42,940 KB
testcase_04 AC 214 ms
43,016 KB
testcase_05 AC 209 ms
43,248 KB
testcase_06 AC 219 ms
42,980 KB
testcase_07 AC 211 ms
43,248 KB
testcase_08 AC 215 ms
42,836 KB
testcase_09 AC 210 ms
43,320 KB
testcase_10 AC 203 ms
42,980 KB
testcase_11 AC 214 ms
42,968 KB
testcase_12 AC 209 ms
43,044 KB
testcase_13 AC 216 ms
43,388 KB
testcase_14 AC 207 ms
43,224 KB
testcase_15 AC 216 ms
42,864 KB
testcase_16 AC 212 ms
43,080 KB
testcase_17 AC 213 ms
43,192 KB
testcase_18 AC 203 ms
43,296 KB
testcase_19 AC 213 ms
43,004 KB
testcase_20 AC 214 ms
43,248 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