結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー neko_the_shadowneko_the_shadow
提出日時 2021-11-16 22:51:24
言語 Perl
(5.40.0)
結果
TLE  
実行時間 -
コード長 492 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-12-21 04:32:40
合計ジャッジ時間 80,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
11,136 KB
testcase_01 AC 6 ms
11,520 KB
testcase_02 AC 7 ms
11,008 KB
testcase_03 AC 565 ms
11,520 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 79 ms
11,392 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 217 ms
11,008 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 77 ms
11,392 KB
testcase_21 TLE -
testcase_22 AC 744 ms
11,520 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,019 ms
11,008 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 7 ms
11,008 KB
testcase_34 AC 6 ms
5,760 KB
testcase_35 AC 7 ms
5,760 KB
testcase_36 TLE -
testcase_37 AC 7 ms
5,760 KB
testcase_38 AC 6 ms
5,760 KB
testcase_39 AC 7 ms
5,760 KB
testcase_40 AC 6 ms
5,760 KB
testcase_41 AC 6 ms
5,760 KB
testcase_42 AC 6 ms
5,760 KB
testcase_43 AC 6 ms
5,760 KB
testcase_44 AC 6 ms
5,760 KB
testcase_45 AC 7 ms
5,760 KB
testcase_46 AC 7 ms
5,760 KB
testcase_47 AC 6 ms
5,888 KB
testcase_48 AC 7 ms
5,760 KB
testcase_49 AC 6 ms
11,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

sub factor {
    my $n = shift;
    my $m = 2;
    my %h;

    while ($n > 1) {
        while ($n % $m == 0) {
            $h{$m}++;
            $n /= $m;
        }
        $m++;
    }

    return \%h;
}

sub main {
    my ($x, $a, $y, $b) = split / /, <>;
    my %h1 = %{factor($x)};
    my %h2 = %{factor($y)};

    foreach my $k (keys %h2) {
        return "No" unless (exists $h1{$k} and $h1{$k}*$a >= $h2{$k}*$b);
    }
    return "Yes";
}

print main, "\n";

0