結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー taktak
提出日時 2018-08-08 10:20:35
言語 F#
(.NET 7)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 16,388 ms
コンパイル使用メモリ 182,012 KB
実行使用メモリ 36,020 KB
最終ジャッジ日時 2023-10-22 02:10:24
合計ジャッジ時間 25,373 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
36,004 KB
testcase_01 AC 296 ms
36,004 KB
testcase_02 AC 298 ms
36,004 KB
testcase_03 AC 295 ms
36,004 KB
testcase_04 AC 293 ms
36,004 KB
testcase_05 AC 284 ms
36,004 KB
testcase_06 AC 294 ms
36,012 KB
testcase_07 AC 292 ms
36,012 KB
testcase_08 AC 289 ms
36,012 KB
testcase_09 AC 288 ms
36,012 KB
testcase_10 AC 302 ms
36,012 KB
testcase_11 AC 297 ms
36,012 KB
testcase_12 AC 299 ms
36,004 KB
testcase_13 AC 295 ms
36,004 KB
testcase_14 AC 290 ms
36,004 KB
testcase_15 AC 293 ms
36,020 KB
testcase_16 AC 291 ms
36,020 KB
testcase_17 AC 289 ms
36,020 KB
testcase_18 AC 292 ms
36,012 KB
testcase_19 AC 289 ms
36,020 KB
testcase_20 AC 290 ms
36,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (573 ms)。
MSBuild のバージョン 17.7.3+8ec440e68 (.NET)
  main -> /home/judge/data/code/bin/Release/net7.0/main.dll
  main -> /home/judge/data/code/bin/Release/net7.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