結果

問題 No.220 世界のなんとか2
ユーザー AAAR15AAAR15
提出日時 2015-06-22 18:23:18
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 219 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 39,724 KB
最終ジャッジ日時 2024-07-07 16:37:16
合計ジャッジ時間 4,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
39,724 KB
testcase_01 AC 35 ms
32,656 KB
testcase_02 AC 37 ms
32,660 KB
testcase_03 AC 33 ms
32,656 KB
testcase_04 AC 43 ms
32,656 KB
testcase_05 AC 140 ms
32,728 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$input = trim(fgets(STDIN));
$from = 1;
$to = pow(10, $input);
$count = 0;
for ($i = $from; $i <= $to; $i++) {
if (($i % 3 === 0) || (preg_match('/^[0-9]*3[0-9]*$/', $i))) { 
    $count += 1;
    }
}
echo $count;
0