結果

問題 No.207 世界のなんとか
ユーザー ねずねず
提出日時 2018-01-23 23:29:15
言語 PHP
(843.2)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 157 bytes
コンパイル時間 3,499 ms
コンパイル使用メモリ 30,840 KB
実行使用メモリ 31,304 KB
最終ジャッジ日時 2024-12-26 03:54:45
合計ジャッジ時間 2,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
31,036 KB
testcase_01 AC 49 ms
30,984 KB
testcase_02 AC 51 ms
31,092 KB
testcase_03 AC 49 ms
30,768 KB
testcase_04 AC 50 ms
30,836 KB
testcase_05 AC 48 ms
30,948 KB
testcase_06 AC 51 ms
30,876 KB
testcase_07 AC 47 ms
30,884 KB
testcase_08 AC 47 ms
31,012 KB
testcase_09 AC 51 ms
30,888 KB
testcase_10 AC 47 ms
31,040 KB
testcase_11 AC 49 ms
31,172 KB
testcase_12 AC 49 ms
30,876 KB
testcase_13 AC 48 ms
30,876 KB
testcase_14 AC 48 ms
31,180 KB
testcase_15 AC 47 ms
31,148 KB
testcase_16 AC 49 ms
31,304 KB
testcase_17 AC 50 ms
31,008 KB
testcase_18 AC 49 ms
31,068 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$a = explode(" ", trim(fgets(STDIN)));
for ($i = $a[0]; $i <= $a[1]; $i++) {
	if ($i % 3 == 0 || strpos($i, '3') !== false) {
		echo $i . "\n";
	}
}
?>
0