結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー mondo
提出日時 2019-08-06 16:02:01
言語 PHP
(843.2)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 31,120 KB
実行使用メモリ 31,664 KB
最終ジャッジ日時 2024-07-18 14:03:46
合計ジャッジ時間 1,525 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$target_day = trim(fgets(STDIN));
$day = strtotime(str_replace("/", "-", $target_day));
echo date("Y/m/d",strtotime("+2 day", $day));
0