結果
問題 | No.207 世界のなんとか |
ユーザー |
![]() |
提出日時 | 2016-03-19 00:15:38 |
言語 | PHP (843.2) |
結果 |
AC
|
実行時間 | 43 ms / 5,000 ms |
コード長 | 226 bytes |
コンパイル時間 | 2,983 ms |
コンパイル使用メモリ | 31,632 KB |
実行使用メモリ | 32,404 KB |
最終ジャッジ日時 | 2024-10-09 10:48:11 |
合計ジャッジ時間 | 1,850 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php$input = explode(" ", trim(fgets(STDIN)));$a = $input[0];$b = $input[1];for ($count = $a; $count <= $b; $count++) {if ( (($count % 3) == 0) || (strpos($count,'3') !== FALSE) ) {echo $count.PHP_EOL;}}