結果

問題 No.1794 Continued Fraction
ユーザー chineristACchineristAC
提出日時 2021-12-23 00:18:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,096 KB
最終ジャッジ日時 2024-09-16 20:25:42
合計ジャッジ時間 6,202 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
89,044 KB
testcase_01 AC 134 ms
88,668 KB
testcase_02 AC 134 ms
88,876 KB
testcase_03 AC 139 ms
88,652 KB
testcase_04 AC 134 ms
88,760 KB
testcase_05 AC 135 ms
88,688 KB
testcase_06 AC 135 ms
88,704 KB
testcase_07 AC 135 ms
88,912 KB
testcase_08 AC 138 ms
88,848 KB
testcase_09 AC 134 ms
88,716 KB
testcase_10 AC 135 ms
88,688 KB
testcase_11 AC 141 ms
88,824 KB
testcase_12 AC 143 ms
88,672 KB
testcase_13 AC 145 ms
88,980 KB
testcase_14 AC 134 ms
88,820 KB
testcase_15 AC 140 ms
88,868 KB
testcase_16 AC 133 ms
89,012 KB
testcase_17 AC 129 ms
88,780 KB
testcase_18 AC 136 ms
88,988 KB
testcase_19 AC 134 ms
89,096 KB
testcase_20 AC 137 ms
88,912 KB
testcase_21 AC 138 ms
88,724 KB
testcase_22 AC 136 ms
88,668 KB
testcase_23 AC 135 ms
89,004 KB
testcase_24 AC 137 ms
88,732 KB
testcase_25 AC 136 ms
88,944 KB
testcase_26 AC 138 ms
88,660 KB
testcase_27 AC 138 ms
88,816 KB
testcase_28 AC 134 ms
88,672 KB
testcase_29 AC 143 ms
88,908 KB
testcase_30 AC 138 ms
88,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd
from fractions import Fraction

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()
A = []
while M:
    A.append(N//M)
    N %= M
    N,M = M,N
print(*A)
0