結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー KisaragiEffective
提出日時 2019-12-06 17:09:06
言語 Kotlin
(2.1.0)
結果
RE  
実行時間 -
コード長 213 bytes
コンパイル時間 13,249 ms
コンパイル使用メモリ 428,496 KB
実行使用メモリ 50,212 KB
最終ジャッジ日時 2024-12-23 11:22:32
合計ジャッジ時間 19,771 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.text.SimpleDateFormat
import java.time.LocalDate
import java.time.format.DateTimeFormatter
fun main() {
    println(LocalDate.parse(readLine()!!).plusDays(2).format(DateTimeFormatter.BASIC_ISO_DATE))
}
0