結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 10:08:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 2,470 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 58,012 KB
最終ジャッジ日時 2024-09-13 09:52:36
合計ジャッジ時間 8,135 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 239 ms
58,012 KB
testcase_01 AC 229 ms
57,860 KB
testcase_02 AC 234 ms
57,884 KB
testcase_03 AC 240 ms
57,492 KB
testcase_04 AC 244 ms
57,344 KB
testcase_05 AC 237 ms
57,752 KB
testcase_06 AC 240 ms
57,496 KB
testcase_07 AC 233 ms
57,732 KB
testcase_08 AC 235 ms
57,680 KB
testcase_09 AC 234 ms
57,976 KB
testcase_10 AC 242 ms
57,868 KB
testcase_11 AC 243 ms
57,676 KB
testcase_12 AC 241 ms
57,312 KB
testcase_13 AC 244 ms
58,012 KB
testcase_14 AC 235 ms
57,436 KB
testcase_15 AC 247 ms
57,952 KB
testcase_16 AC 247 ms
57,968 KB
testcase_17 AC 248 ms
57,504 KB
testcase_18 AC 238 ms
57,928 KB
testcase_19 AC 241 ms
57,644 KB
testcase_20 AC 246 ms
57,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

		Calendar cl = Calendar.getInstance();
		String s = sc.next();
		int y = Integer.parseInt(s.substring(0,4));
		int m = Integer.parseInt(s.substring(5,7));
		int d = Integer.parseInt(s.substring(8,10));
		
		
		cl.set(y, m-1, d);
		cl.add(Calendar.DATE, 2);
		
		
		System.out.println(cl.get(Calendar.YEAR)+"/"+String.format("%02d", cl.get(Calendar.MONTH)+1)+"/"+String.format("%02d", cl.get(Calendar.DATE)));

	}
}
0