結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
12,288 KB
testcase_01 AC 9 ms
11,520 KB
testcase_02 AC 9 ms
12,416 KB
testcase_03 AC 9 ms
12,032 KB
testcase_04 AC 9 ms
6,144 KB
testcase_05 AC 10 ms
6,016 KB
testcase_06 AC 9 ms
6,272 KB
testcase_07 TLE -
testcase_08 AC 9 ms
6,144 KB
testcase_09 AC 9 ms
6,144 KB
testcase_10 AC 9 ms
6,144 KB
testcase_11 TLE -
testcase_12 AC 10 ms
6,016 KB
testcase_13 AC 9 ms
6,144 KB
testcase_14 AC 10 ms
6,144 KB
testcase_15 TLE -
testcase_16 AC 10 ms
6,144 KB
testcase_17 AC 10 ms
6,144 KB
testcase_18 AC 10 ms
6,016 KB
testcase_19 AC 11 ms
6,144 KB
testcase_20 AC 10 ms
6,144 KB
testcase_21 AC 10 ms
6,016 KB
testcase_22 WA -
testcase_23 AC 9 ms
6,016 KB
testcase_24 AC 10 ms
6,144 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 9 ms
6,144 KB
testcase_28 AC 10 ms
6,144 KB
testcase_29 AC 11 ms
6,144 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()
if any(c=='0' for c in format(int(M)-1, 'b')) and M[-1] not in '05':
    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
0