結果

問題 No.405 ローマ数字の腕時計
ユーザー mondomondo
提出日時 2019-08-05 11:48:13
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 31,480 KB
最終ジャッジ日時 2024-07-06 19:23:07
合計ジャッジ時間 2,024 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,404 KB
testcase_01 AC 41 ms
30,992 KB
testcase_02 AC 41 ms
30,964 KB
testcase_03 AC 38 ms
31,336 KB
testcase_04 AC 39 ms
31,412 KB
testcase_05 AC 38 ms
31,016 KB
testcase_06 AC 38 ms
31,236 KB
testcase_07 AC 38 ms
31,048 KB
testcase_08 AC 38 ms
31,016 KB
testcase_09 AC 42 ms
30,956 KB
testcase_10 AC 38 ms
31,004 KB
testcase_11 AC 42 ms
31,236 KB
testcase_12 AC 37 ms
31,040 KB
testcase_13 AC 38 ms
31,196 KB
testcase_14 AC 39 ms
31,408 KB
testcase_15 AC 40 ms
31,160 KB
testcase_16 AC 39 ms
31,064 KB
testcase_17 AC 38 ms
31,420 KB
testcase_18 AC 38 ms
31,012 KB
testcase_19 AC 38 ms
31,236 KB
testcase_20 AC 39 ms
31,148 KB
testcase_21 AC 40 ms
31,012 KB
testcase_22 AC 40 ms
31,296 KB
testcase_23 AC 37 ms
31,120 KB
testcase_24 AC 38 ms
31,320 KB
testcase_25 AC 38 ms
31,352 KB
testcase_26 AC 39 ms
31,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($time, $hour) = explode(" ", trim(fgets(STDIN)));
$roma = ["I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"];
$now = 0;
for ($i = 0; $i < 12; $i++) {
     if ($roma[$i] == $time) {
         $now = $i +1;
         break;
     }
}
$now = $now + $hour;
$now = $now % 12;
if ($now < 0){
    $now = 12 + $now;
} elseif ($now == 0) {
    $now = 12;
}
echo($roma[floor($now - 1)]);
0