結果

問題 No.1003 サイコロの実装 (1)
ユーザー takutakutakutaku
提出日時 2021-06-03 08:43:09
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 3,191 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 31,492 KB
最終ジャッジ日時 2024-04-28 02:41:00
合計ジャッジ時間 5,054 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,232 KB
testcase_01 AC 41 ms
31,132 KB
testcase_02 AC 40 ms
31,424 KB
testcase_03 AC 41 ms
31,200 KB
testcase_04 AC 40 ms
31,236 KB
testcase_05 AC 40 ms
31,288 KB
testcase_06 AC 40 ms
31,100 KB
testcase_07 AC 40 ms
31,228 KB
testcase_08 AC 40 ms
31,216 KB
testcase_09 AC 39 ms
31,164 KB
testcase_10 AC 40 ms
31,096 KB
testcase_11 AC 40 ms
31,096 KB
testcase_12 AC 39 ms
31,368 KB
testcase_13 AC 40 ms
31,324 KB
testcase_14 AC 39 ms
31,368 KB
testcase_15 AC 39 ms
31,256 KB
testcase_16 AC 40 ms
31,492 KB
testcase_17 AC 39 ms
31,124 KB
testcase_18 AC 40 ms
31,456 KB
testcase_19 AC 40 ms
31,140 KB
testcase_20 AC 40 ms
31,080 KB
testcase_21 AC 40 ms
30,924 KB
testcase_22 AC 41 ms
31,140 KB
testcase_23 AC 41 ms
30,900 KB
testcase_24 AC 40 ms
30,972 KB
testcase_25 AC 41 ms
31,256 KB
testcase_26 AC 40 ms
31,412 KB
testcase_27 AC 40 ms
31,396 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    
    $n = trim(fgets(STDIN));
    if ($n % 6 == 0) {
        echo 'Yes';
    } else {
        echo 'No';
    }
    
?>
0