結果
問題 | No.751 Frac #2 |
ユーザー | _polarbear08 |
提出日時 | 2018-11-09 21:44:26 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 30 ms / 1,000 ms |
コード長 | 749 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-21 05:47:33 |
合計ジャッジ時間 | 2,163 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 36 |
ソースコード
import sys stdin = sys.stdin sys.setrecursionlimit(10**5) def li(): return map(int, stdin.readline().split()) def li_(): return map(lambda x: int(x)-1, stdin.readline().split()) def lf(): return map(float, stdin.readline().split()) def ls(): return stdin.readline().split() def ns(): return stdin.readline().rstrip() def lc(): return list(ns()) def ni(): return int(stdin.readline()) def nf(): return float(stdin.readline()) def get_gcd(a:int, b:int) -> int: while b: a, b = b, a % b return a n1 = ni() a = list(li()) n2 = ni() b = list(li()) up = a[0] bt = 1 for ai in a[1:]: bt *= ai for i, bi in enumerate(b): if i%2: up *= bi else: bt *= bi gcd = get_gcd(up,bt) print(up//gcd, bt//gcd)