結果

問題 No.751 Frac #2
ユーザー bluemeganebluemegane
提出日時 2018-11-10 11:33:09
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,236 bytes
コンパイル時間 3,280 ms
コンパイル使用メモリ 104,580 KB
実行使用メモリ 23,024 KB
最終ジャッジ日時 2023-08-15 10:59:28
合計ジャッジ時間 6,948 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
22,880 KB
testcase_01 AC 52 ms
20,844 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 51 ms
22,924 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 50 ms
20,812 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 54 ms
22,900 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class P
{
    public int a { get; set; }
    public int b { get; set; }
    public double v { get; set; }
}

public class Hello
{
    static void Main()
    {
        var n1 = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a1 = Array.ConvertAll(line, int.Parse);
        var n2 = int.Parse(Console.ReadLine().Trim());
        line = Console.ReadLine().Trim().Split(' ');
        var a2 = Array.ConvertAll(line, int.Parse);
        var ans1 = getA(a1, n1) * a2[0];
        var ans2 = getA(a2, n2) * a1[0];
        var ans = gcd(Abs(ans1), Abs(ans2));
        ans1 /= ans;
        ans2 /= ans;
        ans1 = ans1 * a1[0] >= 0 ? Abs(ans1) : -Abs(ans1);
        ans2 = ans2 * a2[0] >= 0 ? Abs(ans2) : -Abs(ans2);
        Console.WriteLine("{0} {1}",ans2,ans1);
    }
    static  long getA (int [] a , int n)
    {
        var ans = 1L;
        for (int i = 1; i < n; i++) ans *= a[i];
        return ans;
    }
     static long gcd(long a, long b)
    {
        if (a < b) return gcd(b, a);
        while (b != 0)
        {
            var w = a % b;
            a = b;
            b = w;
        }
        return a;
    }
}

0