結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー ayaaya
提出日時 2019-08-06 14:06:29
言語 PHP
(8.3.4)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 31,188 KB
実行使用メモリ 31,568 KB
最終ジャッジ日時 2024-07-18 13:55:40
合計ジャッジ時間 1,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,404 KB
testcase_01 AC 36 ms
31,440 KB
testcase_02 AC 34 ms
31,372 KB
testcase_03 AC 33 ms
31,284 KB
testcase_04 AC 33 ms
31,448 KB
testcase_05 AC 32 ms
31,416 KB
testcase_06 AC 32 ms
31,496 KB
testcase_07 AC 33 ms
31,568 KB
testcase_08 AC 32 ms
31,432 KB
testcase_09 AC 33 ms
31,564 KB
testcase_10 AC 33 ms
31,260 KB
testcase_11 AC 33 ms
31,328 KB
testcase_12 AC 33 ms
31,320 KB
testcase_13 AC 36 ms
31,120 KB
testcase_14 AC 34 ms
31,168 KB
testcase_15 AC 35 ms
31,472 KB
testcase_16 AC 33 ms
31,084 KB
testcase_17 AC 33 ms
31,296 KB
testcase_18 AC 35 ms
31,428 KB
testcase_19 AC 34 ms
31,336 KB
testcase_20 AC 34 ms
31,140 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$input=trim(fgets(STDIN));
$getDay=date_create($input);
echo date_modify($getDay, "+2 day")->format("Y/m/d");
0