結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー bluemeganebluemegane
提出日時 2021-10-30 07:27:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,127 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 109,640 KB
実行使用メモリ 26,440 KB
最終ジャッジ日時 2024-10-07 13:26:35
合計ジャッジ時間 3,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,240 KB
testcase_01 AC 28 ms
24,156 KB
testcase_02 AC 29 ms
24,284 KB
testcase_03 AC 31 ms
24,024 KB
testcase_04 AC 40 ms
24,392 KB
testcase_05 AC 32 ms
24,260 KB
testcase_06 AC 30 ms
24,280 KB
testcase_07 AC 30 ms
24,392 KB
testcase_08 AC 32 ms
26,436 KB
testcase_09 AC 29 ms
24,500 KB
testcase_10 AC 33 ms
24,160 KB
testcase_11 AC 29 ms
24,492 KB
testcase_12 AC 30 ms
26,308 KB
testcase_13 AC 29 ms
26,312 KB
testcase_14 AC 29 ms
22,324 KB
testcase_15 AC 45 ms
24,536 KB
testcase_16 AC 33 ms
24,420 KB
testcase_17 AC 48 ms
26,324 KB
testcase_18 AC 37 ms
24,292 KB
testcase_19 AC 34 ms
26,440 KB
testcase_20 AC 30 ms
22,328 KB
testcase_21 AC 38 ms
25,920 KB
testcase_22 AC 32 ms
24,236 KB
testcase_23 AC 33 ms
24,412 KB
testcase_24 AC 29 ms
24,288 KB
testcase_25 AC 38 ms
26,296 KB
testcase_26 AC 31 ms
24,496 KB
testcase_27 AC 29 ms
22,200 KB
testcase_28 AC 39 ms
22,068 KB
testcase_29 AC 36 ms
23,984 KB
testcase_30 AC 45 ms
24,372 KB
testcase_31 AC 36 ms
24,156 KB
testcase_32 AC 30 ms
24,252 KB
testcase_33 AC 28 ms
24,288 KB
testcase_34 AC 28 ms
24,548 KB
testcase_35 AC 28 ms
24,416 KB
testcase_36 AC 53 ms
24,036 KB
testcase_37 AC 28 ms
24,244 KB
testcase_38 AC 27 ms
25,832 KB
testcase_39 AC 27 ms
24,116 KB
testcase_40 AC 28 ms
24,544 KB
testcase_41 AC 29 ms
24,280 KB
testcase_42 AC 29 ms
24,368 KB
testcase_43 AC 29 ms
24,284 KB
testcase_44 AC 28 ms
24,280 KB
testcase_45 AC 28 ms
24,288 KB
testcase_46 AC 28 ms
22,068 KB
testcase_47 AC 29 ms
24,160 KB
testcase_48 AC 29 ms
24,240 KB
testcase_49 AC 28 ms
22,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var x = long.Parse(line[0]);
        var a = long.Parse(line[1]);
        var y = long.Parse(line[2]);
        var b = long.Parse(line[3]);
        Console.WriteLine(getAns(x, a, y, b) ? "Yes" : "No");
    }
    static bool getAns(long x, long a, long y, long b)
    {
        var d = PF(x);
        var d2 = PF(y);
        foreach (var t in d2)
        {
            if (!d.ContainsKey(t.Key)) return false;
            var bb = t.Value * b;
            var aa = d[t.Key] * a;
            if (aa < bb) return false;
        }
        return true;
    }

    static Dictionary<long, long> PF(long n)
    {
        var d = new Dictionary<long, long>();
        for (long i = 2; i * i <= n; i++)
        {
            if (n % i != 0) continue;
            var x = 0L;
            while (n % i == 0)
            {
                x++;
                n /= i;
            }
            d[i] = x;
        }
        if (n != 1) d[n] = 1;
        return d;
    }
}
0