結果

問題 No.525 二度寝の季節
ユーザー ayaaya
提出日時 2019-07-31 17:57:53
言語 PHP
(8.3.4)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 433 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 31,000 KB
実行使用メモリ 31,356 KB
最終ジャッジ日時 2024-07-05 06:53:18
合計ジャッジ時間 2,513 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,060 KB
testcase_01 AC 40 ms
30,884 KB
testcase_02 AC 40 ms
30,804 KB
testcase_03 AC 39 ms
31,104 KB
testcase_04 AC 40 ms
31,024 KB
testcase_05 AC 40 ms
31,092 KB
testcase_06 AC 40 ms
31,024 KB
testcase_07 AC 47 ms
30,788 KB
testcase_08 AC 40 ms
31,292 KB
testcase_09 AC 41 ms
30,980 KB
testcase_10 AC 40 ms
31,356 KB
testcase_11 AC 40 ms
31,092 KB
testcase_12 AC 39 ms
30,876 KB
testcase_13 AC 41 ms
31,040 KB
testcase_14 AC 40 ms
31,200 KB
testcase_15 AC 40 ms
31,184 KB
testcase_16 AC 39 ms
31,012 KB
testcase_17 AC 41 ms
30,952 KB
testcase_18 AC 41 ms
31,000 KB
testcase_19 AC 40 ms
30,960 KB
testcase_20 AC 40 ms
30,784 KB
testcase_21 AC 40 ms
31,076 KB
testcase_22 AC 41 ms
31,172 KB
testcase_23 AC 42 ms
31,000 KB
testcase_24 AC 40 ms
31,276 KB
testcase_25 AC 39 ms
31,264 KB
testcase_26 AC 40 ms
30,876 KB
testcase_27 AC 40 ms
31,220 KB
testcase_28 AC 39 ms
31,148 KB
testcase_29 AC 40 ms
31,120 KB
testcase_30 AC 39 ms
31,136 KB
testcase_31 AC 40 ms
31,152 KB
testcase_32 AC 40 ms
31,096 KB
testcase_33 AC 41 ms
30,960 KB
testcase_34 AC 40 ms
30,828 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$date = date_create('2001-01-01');
$input=explode(":",(fgets(STDIN)));
$min=(int)$input[1]+5;
$hour=(int)$input[0];
if($min>=60){
  $min=sprintf('%02d',$min-60);
  $hour=1+(int)$input[0];
  if($hour>=24){
    $hour=sprintf('%02d',$hour-24);
  }else{
    $hour=sprintf('%02d',$hour);
  }
}else{
  $min=sprintf('%02d',$min);
  $hour=sprintf('%02d',$hour);
}
date_time_set($date,$hour,$min);
echo date_format($date, 'H:i') . "\n";
0