結果
| 問題 | No.25 有限小数 |
| コンテスト | |
| ユーザー |
aaaaa
|
| 提出日時 | 2017-03-02 21:38:52 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 327 bytes |
| 記録 | |
| コンパイル時間 | 285 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 21,408 KB |
| 最終ジャッジ日時 | 2026-07-26 08:24:21 |
| 合計ジャッジ時間 | 5,536 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 WA * 4 RE * 3 |
ソースコード
import fractions
from decimal import *
def F(n):
while n%2==0:n//=2
while n%5==0:n//=5
return n == 1
n,m=int(input()),int(input())
x=str(Decimal(n)/Decimal(m))
if 'E' in x:x=x[:x.index('e')]
if F(fractions.Fraction(n,m).denominator):
for x in x[::-1]:
if x not in['0','.'] :print(x);break
else:print(-1)
aaaaa