結果

問題 No.25 有限小数
ユーザー dangodango
提出日時 2023-06-13 16:51:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-06-22 02:11:46
合計ジャッジ時間 2,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,068 KB
testcase_01 AC 34 ms
53,728 KB
testcase_02 AC 32 ms
52,628 KB
testcase_03 AC 32 ms
52,424 KB
testcase_04 AC 32 ms
52,960 KB
testcase_05 AC 32 ms
52,712 KB
testcase_06 AC 33 ms
52,512 KB
testcase_07 AC 31 ms
52,804 KB
testcase_08 AC 33 ms
53,084 KB
testcase_09 AC 32 ms
53,548 KB
testcase_10 AC 33 ms
52,328 KB
testcase_11 AC 33 ms
53,104 KB
testcase_12 AC 33 ms
53,264 KB
testcase_13 AC 33 ms
52,752 KB
testcase_14 AC 34 ms
53,600 KB
testcase_15 AC 34 ms
52,240 KB
testcase_16 AC 35 ms
52,128 KB
testcase_17 AC 32 ms
52,708 KB
testcase_18 AC 34 ms
51,952 KB
testcase_19 AC 34 ms
52,608 KB
testcase_20 AC 33 ms
53,052 KB
testcase_21 AC 33 ms
52,500 KB
testcase_22 AC 31 ms
53,016 KB
testcase_23 AC 31 ms
52,332 KB
testcase_24 AC 32 ms
52,784 KB
testcase_25 AC 34 ms
53,136 KB
testcase_26 AC 32 ms
53,376 KB
testcase_27 AC 32 ms
54,304 KB
testcase_28 AC 31 ms
52,244 KB
testcase_29 AC 31 ms
53,352 KB
testcase_30 AC 31 ms
53,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())
M = int(input())
N *= 10 ** 100
G = math.gcd(N, M)
N //= G
M //= G
if M != 1:
    print(-1)
else:
    ANS = ""
    for C in str(N):
        if C != "0":
            ANS = C
    print(ANS)
0