結果

問題 No.542 1円玉と5円玉
ユーザー tazakkytazakky
提出日時 2017-09-12 15:11:09
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 30,456 KB
実行使用メモリ 31,372 KB
最終ジャッジ日時 2024-11-07 17:21:40
合計ジャッジ時間 1,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,792 KB
testcase_01 AC 42 ms
31,012 KB
testcase_02 AC 39 ms
30,856 KB
testcase_03 AC 39 ms
30,812 KB
testcase_04 AC 39 ms
30,708 KB
testcase_05 AC 39 ms
31,120 KB
testcase_06 AC 39 ms
30,728 KB
testcase_07 AC 42 ms
30,884 KB
testcase_08 AC 42 ms
30,716 KB
testcase_09 AC 40 ms
30,864 KB
testcase_10 AC 41 ms
31,084 KB
testcase_11 AC 39 ms
30,812 KB
testcase_12 AC 43 ms
31,372 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    // 1円玉がA枚、5円玉がB枚ある
    list($a, $b) = explode(" ", trim(fgets(STDIN)));

    for($i = 0; $i <= $a; $i++){
        for ($j = 0; $j <= $b; $j++) {
             $yen[] =   $i + (5 * $j);
             
        }
    }
    sort($yen);
    $yen_list = array_unique($yen);
    foreach ($yen_list as $value) {
        if($value != 0){
            echo $value."\n";
        }
    }
?>
0