結果
問題 | 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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
26,152 KB |
testcase_01 | AC | 24 ms
23,984 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 25 ms
26,172 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 | 23 ms
21,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 23 ms
24,384 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.
ソースコード
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; } }