結果

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

ソースコード

diff #

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