結果
| 問題 | No.751 Frac #2 |
| コンテスト | |
| ユーザー |
suikameron1
|
| 提出日時 | 2018-11-09 23:26:35 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 1,000 ms |
| コード長 | 1,165 bytes |
| コンパイル時間 | 991 ms |
| コンパイル使用メモリ | 111,200 KB |
| 実行使用メモリ | 26,152 KB |
| 最終ジャッジ日時 | 2024-11-21 06:49:01 |
| 合計ジャッジ時間 | 3,383 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 36 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;//リストの使用
using System.Collections.Generic;
using System.Text;//テキストの高速出力に必要
class Program
{
static void Main()
{
long nA = long.Parse(Console.ReadLine());
long[] numsA = Array.ConvertAll(Console.ReadLine().Split(' '),long.Parse);
long nB = long.Parse(Console.ReadLine());
long[] numsB = Array.ConvertAll(Console.ReadLine().Split(' '),long.Parse);
long child = numsA[0];
long mother = 1;
for(int i = 1; i < nA; i++) mother *= numsA[i];
for(int i = 0; i < nB; i++)
{
if(i % 2 == 0) mother *= numsB[i];
else child *= numsB[i];
}
long gcd = Gcd(mother, child);
child /= gcd;
mother /= gcd;
if(mother < 0)
{
child *= -1;
mother *= -1;
}
Console.WriteLine(child + " " + mother);
}
static long Gcd(long a, long b)
{//引数a,bの最大公約数を返す
if (a < b)
return Gcd(b, a);//入れ替え
while (b != 0)
{
long changeTo = a % b;
a = b;
b = changeTo;
}
return a;
}
}
suikameron1