結果

問題 No.25 有限小数
ユーザー ytftytft
提出日時 2022-11-03 17:46:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 217 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-07-18 02:04:16
合計ジャッジ時間 2,370 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,076 KB
testcase_01 AC 45 ms
53,688 KB
testcase_02 AC 42 ms
52,816 KB
testcase_03 AC 39 ms
53,260 KB
testcase_04 AC 39 ms
52,832 KB
testcase_05 AC 38 ms
52,332 KB
testcase_06 AC 39 ms
52,616 KB
testcase_07 AC 40 ms
52,476 KB
testcase_08 AC 38 ms
52,892 KB
testcase_09 AC 39 ms
53,088 KB
testcase_10 AC 38 ms
52,680 KB
testcase_11 AC 38 ms
52,652 KB
testcase_12 AC 38 ms
52,904 KB
testcase_13 AC 38 ms
53,304 KB
testcase_14 AC 38 ms
53,188 KB
testcase_15 AC 38 ms
53,012 KB
testcase_16 AC 38 ms
52,452 KB
testcase_17 AC 41 ms
52,932 KB
testcase_18 AC 39 ms
52,184 KB
testcase_19 AC 39 ms
52,952 KB
testcase_20 AC 37 ms
53,412 KB
testcase_21 AC 38 ms
52,928 KB
testcase_22 AC 38 ms
52,400 KB
testcase_23 AC 38 ms
52,960 KB
testcase_24 AC 37 ms
53,004 KB
testcase_25 AC 39 ms
52,472 KB
testcase_26 AC 38 ms
52,616 KB
testcase_27 AC 39 ms
53,416 KB
testcase_28 AC 38 ms
52,940 KB
testcase_29 AC 38 ms
52,124 KB
testcase_30 AC 39 ms
53,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N,M=[int(input()) for i in range(2)]
A=[2,5]
for i in range(2):
	while M%A[i]==0:
		M//=A[i]
		N*=A[1-i]
while N%10==0:
	N//=10
print((N//M)%10 if N%M==0 else -1)
0