結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー htensai
提出日時 2019-11-12 00:16:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 75,620 KB
実行使用メモリ 43,348 KB
最終ジャッジ日時 2024-09-15 10:39:46
合計ジャッジ時間 7,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy/MM/dd");
		Date d = sdf.parse(sc.next());
		GregorianCalendar gc = new GregorianCalendar();
		gc.setTime(d);
		gc.add(Calendar.DATE, 2);
		System.out.println(sdf.format(gc.getTime()));
	}
}
0