結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー htensaihtensai
提出日時 2019-11-12 00:16:14
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
43,080 KB
testcase_01 AC 213 ms
42,932 KB
testcase_02 AC 213 ms
43,056 KB
testcase_03 AC 213 ms
43,060 KB
testcase_04 AC 202 ms
42,708 KB
testcase_05 AC 212 ms
43,100 KB
testcase_06 AC 211 ms
42,880 KB
testcase_07 AC 213 ms
42,864 KB
testcase_08 AC 209 ms
43,152 KB
testcase_09 AC 212 ms
43,008 KB
testcase_10 AC 213 ms
43,052 KB
testcase_11 AC 213 ms
43,004 KB
testcase_12 AC 203 ms
43,092 KB
testcase_13 AC 212 ms
42,884 KB
testcase_14 AC 214 ms
42,816 KB
testcase_15 AC 205 ms
43,188 KB
testcase_16 AC 211 ms
42,956 KB
testcase_17 AC 218 ms
43,028 KB
testcase_18 AC 213 ms
43,060 KB
testcase_19 AC 211 ms
43,348 KB
testcase_20 AC 203 ms
43,216 KB
権限があれば一括ダウンロードができます

ソースコード

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