結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー papinianuspapinianus
提出日時 2021-06-19 10:56:08
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 3,809 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 31,452 KB
最終ジャッジ日時 2024-06-22 21:54:50
合計ジャッジ時間 5,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,164 KB
testcase_01 AC 39 ms
31,372 KB
testcase_02 AC 40 ms
31,200 KB
testcase_03 AC 39 ms
31,280 KB
testcase_04 AC 38 ms
31,124 KB
testcase_05 AC 38 ms
30,960 KB
testcase_06 AC 39 ms
31,452 KB
testcase_07 AC 41 ms
31,128 KB
testcase_08 AC 39 ms
30,976 KB
testcase_09 AC 37 ms
31,192 KB
testcase_10 AC 38 ms
31,188 KB
testcase_11 AC 36 ms
31,136 KB
testcase_12 AC 37 ms
31,124 KB
testcase_13 AC 36 ms
31,224 KB
testcase_14 AC 38 ms
31,008 KB
testcase_15 AC 37 ms
30,952 KB
testcase_16 AC 39 ms
31,344 KB
testcase_17 AC 37 ms
31,252 KB
testcase_18 AC 37 ms
31,392 KB
testcase_19 AC 36 ms
31,068 KB
testcase_20 AC 37 ms
31,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
declare(strict_types=1);
$d = new DateTimeImmutable(UtilIO::getString());
$dayAfterTomorrow = $d->add(new DateInterval('P2D'));
UtilIO::echo($dayAfterTomorrow->format('Y/m/d'));


class UtilIO {
    protected static string $n = PHP_EOL;
    protected function __construct() { }
    public static function getString():string {
        return trim(fgets(STDIN));
    }
    public static function getInt():int {
        return intval(trim(fgets(STDIN)));
    }
    public static function echo(string $str):void {
        echo static::toLine($str);
    }
    public static function toLine(string $str):string {
        return trim($str).static::$n;
    }
}
0