結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 10:16:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 55,232 KB
最終ジャッジ日時 2024-09-13 09:52:59
合計ジャッジ時間 7,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
55,200 KB
testcase_01 AC 211 ms
54,736 KB
testcase_02 AC 199 ms
54,444 KB
testcase_03 AC 201 ms
55,232 KB
testcase_04 AC 200 ms
55,136 KB
testcase_05 AC 202 ms
55,024 KB
testcase_06 AC 204 ms
54,948 KB
testcase_07 AC 209 ms
55,024 KB
testcase_08 AC 208 ms
54,944 KB
testcase_09 AC 210 ms
54,996 KB
testcase_10 AC 201 ms
54,988 KB
testcase_11 AC 207 ms
55,136 KB
testcase_12 AC 198 ms
55,024 KB
testcase_13 AC 201 ms
54,828 KB
testcase_14 AC 205 ms
54,832 KB
testcase_15 AC 209 ms
54,860 KB
testcase_16 AC 211 ms
55,116 KB
testcase_17 AC 207 ms
55,020 KB
testcase_18 AC 201 ms
54,836 KB
testcase_19 AC 212 ms
54,976 KB
testcase_20 AC 209 ms
54,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String s = sc.next();
		int y = Integer.parseInt(s.substring(0,4));
		int m = Integer.parseInt(s.substring(5,7)) - 1;
		int d = Integer.parseInt(s.substring(8,10));
		
		Calendar cl = Calendar.getInstance();
		cl.set(y, m, d);
		cl.add(Calendar.DATE, 2);
		
		SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd");
		System.out.println(sdf.format(cl.getTime()));
		
	}
}
0