結果

問題 No.25 有限小数
ユーザー nebukuro09nebukuro09
提出日時 2016-10-20 16:01:26
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-11-22 16:34:21
合計ジャッジ時間 32,258 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 11 ms
6,144 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 10 ms
6,144 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 9 ms
6,144 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 11 ms
6,144 KB
testcase_20 OLE -
testcase_21 OLE -
testcase_22 AC 11 ms
6,016 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 9 ms
6,144 KB
testcase_26 AC 10 ms
6,144 KB
testcase_27 AC 10 ms
6,144 KB
testcase_28 OLE -
testcase_29 AC 10 ms
6,016 KB
testcase_30 AC 10 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = raw_input()
M = raw_input()

if M == '1':
    print filter(lambda c:c!='0', N)[-1]
    exit()
L = int(M)
while L > 1:
    if L % 2:
        L /= 2
    elif L % 5:
        L /= 5
    else:
        print -1
        exit()

A = 0
i = 0
M = int(M)
while True:
    if i < len(N):
        A = A*10 + int(N[i])
    else:
        A *= 10
    C, A = A/M, A%M
    if C != 0:
        B = C
    if (A == 0) and i >= len(N)-1:
        print B
        break
    i += 1
    print A
0