結果
| 問題 | No.751 Frac #2 |
| コンテスト | |
| ユーザー |
bluemegane
|
| 提出日時 | 2018-11-10 11:33:09 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,236 bytes |
| 記録 | |
| コンパイル時間 | 1,122 ms |
| コンパイル使用メモリ | 114,104 KB |
| 実行使用メモリ | 28,192 KB |
| 最終ジャッジ日時 | 2024-11-23 17:34:38 |
| 合計ジャッジ時間 | 3,173 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 3 WA * 33 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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;
}
}
bluemegane