結果

問題 No.1842 Decimal Point
ユーザー hir355hir355
提出日時 2022-02-18 22:17:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,224 KB
最終ジャッジ日時 2024-06-29 09:07:52
合計ジャッジ時間 2,877 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 427 ms
76,928 KB
testcase_02 AC 510 ms
76,160 KB
testcase_03 AC 501 ms
76,672 KB
testcase_04 AC 500 ms
78,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    a, b, c = map(int, input().split())
    if c <= 40:
        print(a * pow(10, c) // b % 10)
    else:
        c2 = 0
        while b % 2 == 0:
            b //= 2
            c2 += 1
        c5 = 0
        while b % 5 == 0:
            b //= 5
            c5 += 1
        t = a * pow(2, c - c2, b) * pow(5, c - c5, b) % b
        l = []
        for x in range(10):
            if (b * x + t) % 10 == 0:
                l.append(x)
        print(l[0])
0