結果

問題 No.525 二度寝の季節
ユーザー mondomondo
提出日時 2019-08-01 17:36:08
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 1,450 ms
コンパイル使用メモリ 30,964 KB
実行使用メモリ 31,012 KB
最終ジャッジ日時 2024-07-05 07:41:29
合計ジャッジ時間 3,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,812 KB
testcase_01 AC 41 ms
30,692 KB
testcase_02 AC 40 ms
30,940 KB
testcase_03 AC 40 ms
30,724 KB
testcase_04 AC 39 ms
30,864 KB
testcase_05 AC 40 ms
30,628 KB
testcase_06 AC 39 ms
30,508 KB
testcase_07 AC 40 ms
30,736 KB
testcase_08 AC 39 ms
30,704 KB
testcase_09 AC 39 ms
30,604 KB
testcase_10 AC 39 ms
30,652 KB
testcase_11 AC 38 ms
30,800 KB
testcase_12 AC 40 ms
30,720 KB
testcase_13 AC 40 ms
30,716 KB
testcase_14 AC 39 ms
30,624 KB
testcase_15 AC 41 ms
30,676 KB
testcase_16 AC 41 ms
30,804 KB
testcase_17 AC 40 ms
30,724 KB
testcase_18 AC 40 ms
31,012 KB
testcase_19 AC 41 ms
30,852 KB
testcase_20 AC 40 ms
30,904 KB
testcase_21 AC 39 ms
30,836 KB
testcase_22 AC 39 ms
30,628 KB
testcase_23 AC 41 ms
30,752 KB
testcase_24 AC 40 ms
30,572 KB
testcase_25 AC 41 ms
30,728 KB
testcase_26 AC 41 ms
30,500 KB
testcase_27 AC 39 ms
30,804 KB
testcase_28 AC 39 ms
30,708 KB
testcase_29 AC 40 ms
30,824 KB
testcase_30 AC 39 ms
30,852 KB
testcase_31 AC 39 ms
30,916 KB
testcase_32 AC 39 ms
30,712 KB
testcase_33 AC 40 ms
30,660 KB
testcase_34 AC 39 ms
30,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$time = trim(fgets(STDIN));
list($hour,$minutes) = explode(":", $time);
$minutes += 5;
if ($minutes >= 60){
    $hour ++;
    if ($hour >= 24) {
        $hour -= 24;
    }
    $minutes -= 60;
}
echo sprintf("%02s",$hour).":".sprintf("%02s",$minutes);
0