結果

問題 No.1931 Fraction 2
ユーザー nok0nok0
提出日時 2022-05-06 21:33:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 206 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 97,408 KB
最終ジャッジ日時 2024-07-06 17:17:13
合計ジャッジ時間 6,190 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
93,952 KB
testcase_01 AC 120 ms
88,704 KB
testcase_02 AC 123 ms
88,480 KB
testcase_03 AC 145 ms
88,320 KB
testcase_04 AC 142 ms
88,704 KB
testcase_05 AC 136 ms
88,556 KB
testcase_06 AC 143 ms
89,328 KB
testcase_07 AC 132 ms
88,576 KB
testcase_08 AC 123 ms
88,288 KB
testcase_09 AC 135 ms
88,336 KB
testcase_10 AC 116 ms
88,548 KB
testcase_11 AC 133 ms
88,416 KB
testcase_12 AC 126 ms
88,716 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction

n = int(input())
x = Fraction(0, 1)
for i in range(n):
    a, b = map(int, input().split())
    x += Fraction(a, b)
print(x.numerator % 998244353, x.denominator % 998244353)
0