結果

問題 No.542 1円玉と5円玉
ユーザー しめはじめしめはじめ
提出日時 2019-06-20 11:36:32
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 3,185 ms
コンパイル使用メモリ 31,888 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-05-09 15:06:05
合計ジャッジ時間 4,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,080 KB
testcase_01 AC 40 ms
31,464 KB
testcase_02 WA -
testcase_03 AC 39 ms
31,116 KB
testcase_04 AC 39 ms
31,524 KB
testcase_05 AC 39 ms
31,072 KB
testcase_06 AC 40 ms
31,140 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 41 ms
30,924 KB
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$data = explode( " ", trim( fgets( STDIN ) ) );
$ichien = $data[0];
$goen = $data[1];
// 最大でいくらになるか
$max = $goen * 5 + $ichien;
// 1円の最大端数を得る
$komakaino = $ichien % 5;
// あり得る場合だけ出力
for( $i = 1; $i <= $max; $i++ ){
    if( $i % 5 <= $komakaino ){
        printf( "%d\n", $i );
    }
}
0