結果

問題 No.25 有限小数
ユーザー ntudantuda
提出日時 2024-12-24 00:07:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-12-24 00:07:33
合計ジャッジ時間 2,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,496 KB
testcase_01 AC 35 ms
52,496 KB
testcase_02 AC 34 ms
52,404 KB
testcase_03 AC 35 ms
53,572 KB
testcase_04 AC 35 ms
52,400 KB
testcase_05 AC 36 ms
54,152 KB
testcase_06 AC 36 ms
52,336 KB
testcase_07 AC 38 ms
52,624 KB
testcase_08 AC 38 ms
52,728 KB
testcase_09 AC 37 ms
52,704 KB
testcase_10 AC 40 ms
53,256 KB
testcase_11 AC 36 ms
52,536 KB
testcase_12 AC 34 ms
53,348 KB
testcase_13 AC 39 ms
53,412 KB
testcase_14 AC 41 ms
52,332 KB
testcase_15 AC 39 ms
53,536 KB
testcase_16 AC 37 ms
52,256 KB
testcase_17 AC 38 ms
53,188 KB
testcase_18 AC 38 ms
52,616 KB
testcase_19 AC 37 ms
52,328 KB
testcase_20 AC 36 ms
52,356 KB
testcase_21 AC 36 ms
52,340 KB
testcase_22 WA -
testcase_23 AC 37 ms
52,292 KB
testcase_24 AC 36 ms
52,740 KB
testcase_25 AC 43 ms
52,468 KB
testcase_26 AC 36 ms
52,416 KB
testcase_27 AC 36 ms
52,612 KB
testcase_28 AC 35 ms
52,568 KB
testcase_29 AC 35 ms
52,356 KB
testcase_30 AC 36 ms
52,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())
X2 = 0
M2 = M
while M2 % 2 == 0:
    M2 //= 2
    N *= 5
while M2 % 5 == 0:
    M2 //= 5
    N *= 2
if M2 != 1:
    print(-1)
    exit()
S = str(N)
for s in reversed(S):
    if s != "0":
        print(s)
        exit()


0