結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー taktak
提出日時 2018-08-08 10:20:35
言語 F#
(F# 4.0)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 11,632 ms
コンパイル使用メモリ 185,008 KB
実行使用メモリ 34,788 KB
最終ジャッジ日時 2024-09-22 03:50:29
合計ジャッジ時間 19,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
34,300 KB
testcase_01 AC 330 ms
34,312 KB
testcase_02 AC 329 ms
34,480 KB
testcase_03 AC 332 ms
34,344 KB
testcase_04 AC 331 ms
34,788 KB
testcase_05 AC 332 ms
34,416 KB
testcase_06 AC 332 ms
34,476 KB
testcase_07 AC 328 ms
34,252 KB
testcase_08 AC 329 ms
34,296 KB
testcase_09 AC 332 ms
34,388 KB
testcase_10 AC 329 ms
34,388 KB
testcase_11 AC 330 ms
34,404 KB
testcase_12 AC 331 ms
34,296 KB
testcase_13 AC 329 ms
34,408 KB
testcase_14 AC 329 ms
34,664 KB
testcase_15 AC 332 ms
34,788 KB
testcase_16 AC 328 ms
34,212 KB
testcase_17 AC 338 ms
34,160 KB
testcase_18 AC 333 ms
34,544 KB
testcase_19 AC 332 ms
34,312 KB
testcase_20 AC 331 ms
34,216 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (314 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System
open System.IO
Console.SetOut(new StreamWriter(Console.OpenStandardOutput(), AutoFlush = true))

let input = stdin.ReadLine()

let a = DateTime.Parse input
let b = a.AddDays(2.0)

b.ToString("yyyy/MM/dd") |> Console.WriteLine
0