結果

問題 No.32 貯金箱の憂鬱
ユーザー kuroi_13kuroi_13
提出日時 2017-01-25 12:58:23
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 552 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 7,196 KB
実行使用メモリ 35,360 KB
最終ジャッジ日時 2024-06-02 11:20:24
合計ジャッジ時間 9,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,272 KB
testcase_01 AC 5 ms
5,888 KB
testcase_02 AC 13 ms
6,272 KB
testcase_03 AC 254 ms
10,624 KB
testcase_04 AC 343 ms
11,520 KB
testcase_05 AC 248 ms
10,752 KB
testcase_06 AC 773 ms
14,976 KB
testcase_07 AC 418 ms
11,904 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

my @coins = (100, 25, 1, 1000);
my($in, $tgt) = (0, 0);
for(0..2){
    my $in = <STDIN>;
    chomp $in;
    $tgt += ($in*$coins[$_]);
}

my %f = (0 => 0);
my %n_f = %f;
my $val = 0;
my $quo = 0;
while(!defined($f{$tgt})){
  for my $i (keys %f){
    for my $j (@coins){
      $val = $i+$j;
      $quo = $j == 1000 ? $f{$i} : $f{$i}+1;
      if(!defined($n_f{$val})){
        $n_f{$val} = $quo;
      }else{
        if($quo < $n_f{$val}){
          $n_f{$val} = $quo;
        }
      }
    }
  }
  %f = %n_f;
}

print $f{$tgt};
0