結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー GrenacheGrenache
提出日時 2018-09-16 17:39:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 1,034 bytes
コンパイル時間 3,644 ms
コンパイル使用メモリ 76,180 KB
実行使用メモリ 55,404 KB
最終ジャッジ日時 2024-07-18 07:25:22
合計ジャッジ時間 8,046 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
54,860 KB
testcase_01 AC 190 ms
54,848 KB
testcase_02 AC 196 ms
55,224 KB
testcase_03 AC 184 ms
54,764 KB
testcase_04 AC 178 ms
54,808 KB
testcase_05 AC 197 ms
54,988 KB
testcase_06 AC 184 ms
55,404 KB
testcase_07 AC 197 ms
55,132 KB
testcase_08 AC 197 ms
54,728 KB
testcase_09 AC 198 ms
54,864 KB
testcase_10 AC 199 ms
55,156 KB
testcase_11 AC 197 ms
55,044 KB
testcase_12 AC 192 ms
54,768 KB
testcase_13 AC 181 ms
54,756 KB
testcase_14 AC 196 ms
55,056 KB
testcase_15 AC 188 ms
54,968 KB
testcase_16 AC 191 ms
54,868 KB
testcase_17 AC 191 ms
55,072 KB
testcase_18 AC 190 ms
55,272 KB
testcase_19 AC 194 ms
55,400 KB
testcase_20 AC 178 ms
54,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.text.*;
import java.util.*;


public class Main_yukicoder721 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		String ymd = sc.next();

		Calendar cal = Calendar.getInstance();
		
		try {
			cal.setTime(new SimpleDateFormat("yyyy/MM/dd").parse(ymd));
		} catch (ParseException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		}
//		pr.println(cal.toString());
		cal.add(Calendar.DAY_OF_MONTH, 2);
//		pr.println(cal.toString());

		pr.println(new SimpleDateFormat("yyyy/MM/dd").format(cal.getTime()));
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0