結果

問題 No.207 世界のなんとか
ユーザー dong_fengdong_feng
提出日時 2018-04-16 00:47:05
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 30,732 KB
実行使用メモリ 31,304 KB
最終ジャッジ日時 2024-06-27 02:43:03
合計ジャッジ時間 1,601 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
30,704 KB
testcase_01 AC 43 ms
31,084 KB
testcase_02 AC 41 ms
30,912 KB
testcase_03 AC 41 ms
30,888 KB
testcase_04 AC 41 ms
31,304 KB
testcase_05 AC 40 ms
30,888 KB
testcase_06 AC 40 ms
30,904 KB
testcase_07 AC 41 ms
30,896 KB
testcase_08 AC 41 ms
31,096 KB
testcase_09 AC 41 ms
31,168 KB
testcase_10 AC 40 ms
30,928 KB
testcase_11 AC 41 ms
31,200 KB
testcase_12 AC 43 ms
31,104 KB
testcase_13 AC 41 ms
30,992 KB
testcase_14 AC 44 ms
31,000 KB
testcase_15 AC 40 ms
30,824 KB
testcase_16 AC 40 ms
31,204 KB
testcase_17 AC 39 ms
30,976 KB
testcase_18 AC 40 ms
30,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
function contain3($num){
    while($num>=1){
        if($num%10==3){
            return true;
        }
        $num = floor($num/10);
    }
    return false;
}

sscanf(fgets(STDIN), "%d %d", $min, $max);
for($i=$min; $i<=$max; $i++){
    if(contain3($i)||$i%3==0){
        echo $i;
        echo "\n";
    }
}
0