結果
問題 | No.1931 Fraction 2 |
ユーザー | chocorusk |
提出日時 | 2022-05-06 21:51:40 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 338 bytes |
コンパイル時間 | 301 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 272,612 KB |
最終ジャッジ日時 | 2024-07-06 17:17:28 |
合計ジャッジ時間 | 5,692 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
59,520 KB |
testcase_01 | AC | 36 ms
53,888 KB |
testcase_02 | AC | 37 ms
53,632 KB |
testcase_03 | AC | 46 ms
59,008 KB |
testcase_04 | AC | 49 ms
64,896 KB |
testcase_05 | AC | 43 ms
57,984 KB |
testcase_06 | AC | 51 ms
66,048 KB |
testcase_07 | AC | 44 ms
58,752 KB |
testcase_08 | AC | 42 ms
55,552 KB |
testcase_09 | AC | 46 ms
58,624 KB |
testcase_10 | AC | 36 ms
53,888 KB |
testcase_11 | AC | 45 ms
58,880 KB |
testcase_12 | AC | 38 ms
55,168 KB |
testcase_13 | AC | 658 ms
98,932 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
from collections import deque import math n=int(input()) a=[0]*n b=[0]*n for i in range(n): a[i], b[i]=map(int, input().split()) deq=deque(zip(a, b)) while len(deq)>1: p=deq.popleft() q=deq.popleft() deq.append((p[0]*q[1]+p[1]*q[0], p[1]*q[1])) p=deq[0] g=math.gcd(p[0],p[1]) MOD=998244353 print(p[0]//g%MOD, p[1]//g%MOD)