結果
問題 | No.1931 Fraction 2 |
ユーザー | ytqm3 |
提出日時 | 2022-04-27 23:25:36 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 266 bytes |
コンパイル時間 | 432 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 85,888 KB |
最終ジャッジ日時 | 2024-07-06 17:16:33 |
合計ジャッジ時間 | 5,601 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
57,600 KB |
testcase_01 | AC | 32 ms
52,480 KB |
testcase_02 | AC | 33 ms
52,224 KB |
testcase_03 | AC | 120 ms
71,040 KB |
testcase_04 | AC | 147 ms
75,084 KB |
testcase_05 | AC | 108 ms
70,912 KB |
testcase_06 | AC | 186 ms
74,832 KB |
testcase_07 | AC | 111 ms
71,296 KB |
testcase_08 | AC | 53 ms
69,376 KB |
testcase_09 | AC | 121 ms
71,040 KB |
testcase_10 | AC | 32 ms
52,864 KB |
testcase_11 | AC | 110 ms
71,168 KB |
testcase_12 | AC | 44 ms
63,360 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
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 | -- | - |
ソースコード
import math N = int(input()) A = [0] * N B = [0] * N for i in range(N): A[i], B[i] = map(int,input().split()) c, d = 0, 1 for i in range(N): e, f = c * B[i] + d * A[i], d * B[i] g = math.gcd(e, f) e //= g f //= g c, d = e, f print(c % 998244353, d % 998244353)