結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー DeAKetsuDeAKetsu
提出日時 2019-06-03 12:19:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 55,292 KB
最終ジャッジ日時 2024-09-17 20:23:49
合計ジャッジ時間 7,662 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 200 ms
54,928 KB
testcase_01 AC 210 ms
55,080 KB
testcase_02 AC 210 ms
54,956 KB
testcase_03 AC 208 ms
54,768 KB
testcase_04 AC 211 ms
55,004 KB
testcase_05 AC 196 ms
54,816 KB
testcase_06 AC 196 ms
54,880 KB
testcase_07 AC 208 ms
55,048 KB
testcase_08 AC 212 ms
54,896 KB
testcase_09 AC 213 ms
55,188 KB
testcase_10 AC 200 ms
55,112 KB
testcase_11 AC 214 ms
55,076 KB
testcase_12 AC 203 ms
54,912 KB
testcase_13 AC 204 ms
55,056 KB
testcase_14 AC 214 ms
54,816 KB
testcase_15 AC 203 ms
54,940 KB
testcase_16 AC 205 ms
54,940 KB
testcase_17 AC 214 ms
54,872 KB
testcase_18 AC 213 ms
54,964 KB
testcase_19 AC 211 ms
55,028 KB
testcase_20 AC 209 ms
55,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	
	public static void main(String[] args)
	{
	    Scanner sc = new Scanner(System.in);

	    String input = sc.nextLine();

	    String[] inputArr = input.split("/");

	    Calendar cal = Calendar.getInstance();

	    cal.set(Integer.parseInt(inputArr[0]), Integer.parseInt(inputArr[1])-1, Integer.parseInt(inputArr[2]) + 2);

	    SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd");

	    System.out.println(sdf.format(cal.getTime()));
	}
}
0