結果

問題 No.207 世界のなんとか
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-16 07:25:13
言語 PHP
(8.3.4)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 171 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 30,936 KB
実行使用メモリ 31,352 KB
最終ジャッジ日時 2024-04-17 16:07:55
合計ジャッジ時間 1,435 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
30,776 KB
testcase_01 AC 31 ms
30,988 KB
testcase_02 AC 33 ms
31,084 KB
testcase_03 AC 32 ms
31,292 KB
testcase_04 AC 32 ms
31,012 KB
testcase_05 AC 32 ms
30,988 KB
testcase_06 AC 33 ms
31,020 KB
testcase_07 AC 32 ms
31,068 KB
testcase_08 AC 32 ms
31,352 KB
testcase_09 AC 32 ms
31,044 KB
testcase_10 AC 34 ms
31,160 KB
testcase_11 AC 32 ms
31,200 KB
testcase_12 AC 32 ms
30,976 KB
testcase_13 AC 31 ms
31,140 KB
testcase_14 AC 32 ms
30,992 KB
testcase_15 AC 33 ms
30,932 KB
testcase_16 AC 34 ms
30,648 KB
testcase_17 AC 32 ms
31,320 KB
testcase_18 AC 32 ms
31,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($min,$max) = explode(" ",trim(fgets(STDIN)));
for ( $i=$min; $i<=$max; $i++ ) {
	if ( (($i % 3) == 0) || (strpos($i,'3') !== FALSE) ) {
		echo $i.PHP_EOL;
	}
}
0