結果
問題 | No.207 世界のなんとか |
ユーザー | ant2357 |
提出日時 | 2016-03-18 23:53:34 |
言語 | PHP (843.2) |
結果 |
OLE
|
実行時間 | - |
コード長 | 470 bytes |
コンパイル時間 | 1,231 ms |
コンパイル使用メモリ | 32,400 KB |
実行使用メモリ | 32,272 KB |
最終ジャッジ日時 | 2024-10-01 09:09:58 |
合計ジャッジ時間 | 13,755 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | OLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
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
ソースコード
<?php $input = explode(" ", trim(fgets(STDIN))); $a = $input[0]; $b = $input[1]; for ($count = 3; $count < $b; $count++) { if ($count % 3 === 0 ) { echo "$count\n"; //出力 $count++; } $c = str_split($count); $i = 0; while(isset($c[$i])) { //配列が存在している if ($c[$i] == 3) { //3の付く数字である echo "$count\n"; //出力 } $i++; } $count++; } if ($b % 3 === 0 ) { echo "$count\n"; //出力 }