結果

問題 No.1794 Continued Fraction
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-12-23 18:15:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 53,832 KB
最終ジャッジ日時 2024-09-17 16:36:32
合計ジャッジ時間 2,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,436 KB
testcase_01 AC 36 ms
52,180 KB
testcase_02 AC 34 ms
51,944 KB
testcase_03 AC 32 ms
52,116 KB
testcase_04 AC 33 ms
52,080 KB
testcase_05 AC 33 ms
51,964 KB
testcase_06 AC 34 ms
52,480 KB
testcase_07 AC 33 ms
53,304 KB
testcase_08 AC 33 ms
53,832 KB
testcase_09 AC 33 ms
53,024 KB
testcase_10 AC 33 ms
53,224 KB
testcase_11 AC 32 ms
52,612 KB
testcase_12 AC 33 ms
52,884 KB
testcase_13 AC 33 ms
52,812 KB
testcase_14 AC 33 ms
52,952 KB
testcase_15 AC 37 ms
52,296 KB
testcase_16 AC 33 ms
52,332 KB
testcase_17 AC 32 ms
52,432 KB
testcase_18 AC 33 ms
52,396 KB
testcase_19 AC 32 ms
52,444 KB
testcase_20 AC 32 ms
52,344 KB
testcase_21 AC 33 ms
52,280 KB
testcase_22 AC 32 ms
53,040 KB
testcase_23 AC 32 ms
53,232 KB
testcase_24 AC 34 ms
52,180 KB
testcase_25 AC 32 ms
53,340 KB
testcase_26 AC 33 ms
52,088 KB
testcase_27 AC 32 ms
52,180 KB
testcase_28 AC 33 ms
51,872 KB
testcase_29 AC 34 ms
52,884 KB
testcase_30 AC 34 ms
52,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

N,M = map(int,stdin.readline().split())

ans = []

while True:

    if N == 1 or M == 0:
        ans.append(0)
        ans.append(M)
        break

    else:

        p = N // M
        ans.append(p)
        N,M = M , N % M

    #print (N,M)

while len(ans) > 0 and ans[-1] == 0:
    del ans[-1]
print (*ans)
0