結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー YamaKasaYamaKasa
提出日時 2018-08-03 22:39:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 74,948 KB
実行使用メモリ 55,316 KB
最終ジャッジ日時 2024-09-19 17:31:52
合計ジャッジ時間 6,978 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
55,184 KB
testcase_01 AC 189 ms
55,096 KB
testcase_02 AC 199 ms
55,192 KB
testcase_03 AC 187 ms
54,836 KB
testcase_04 AC 191 ms
54,896 KB
testcase_05 AC 197 ms
55,000 KB
testcase_06 AC 195 ms
55,088 KB
testcase_07 AC 194 ms
54,992 KB
testcase_08 AC 189 ms
54,920 KB
testcase_09 AC 193 ms
54,764 KB
testcase_10 AC 194 ms
55,220 KB
testcase_11 AC 194 ms
55,016 KB
testcase_12 AC 193 ms
55,004 KB
testcase_13 AC 199 ms
55,316 KB
testcase_14 AC 188 ms
55,084 KB
testcase_15 AC 189 ms
55,288 KB
testcase_16 AC 195 ms
55,184 KB
testcase_17 AC 186 ms
55,028 KB
testcase_18 AC 199 ms
55,108 KB
testcase_19 AC 195 ms
55,116 KB
testcase_20 AC 199 ms
54,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		 Calendar calendar = Calendar.getInstance();
		 Scanner scan = new Scanner(System.in);
		 String s = scan.next();
		 scan.close();
		 int year = Integer.parseInt(s.substring(0, 4));
		 String month = s.substring(5, 7);
		 String day = s.substring(8, 10);

		 if(month.charAt(0) == '0'){
			 month = month.substring(1, 2);
		 }
		 if(day.charAt(0) == '0'){
			 day = day.substring(1, 2);
		 }

		 SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd");
		 calendar.set(year, Integer.parseInt(month) - 1, Integer.parseInt(day));
		 //System.out.println(sdf.format(calendar.getTime()));
		 calendar.add(Calendar.DATE, 2);

		 System.out.println(sdf.format(calendar.getTime()));

	}
}
0