結果
問題 | No.25 有限小数 |
ユーザー | szkhts |
提出日時 | 2022-12-18 08:59:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 746 bytes |
コンパイル時間 | 113 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,504 KB |
最終ジャッジ日時 | 2024-11-17 18:29:55 |
合計ジャッジ時間 | 136,659 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
21,504 KB |
testcase_01 | AC | 30 ms
16,128 KB |
testcase_02 | AC | 31 ms
21,248 KB |
testcase_03 | AC | 29 ms
21,504 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | AC | 3,154 ms
16,000 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | AC | 30 ms
21,120 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 28 ms
10,752 KB |
testcase_23 | AC | 29 ms
10,752 KB |
testcase_24 | AC | 28 ms
10,752 KB |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
ソースコード
def gcd(n, m): if m == 0: return n return gcd(m, n % m) def primes(m): nums = [] for i in range(2, m + 1): while m % i == 0: nums.append(i) m = m // i return nums def isTerminate(p): setted = list(set(p)) if 2 in setted: setted.remove(2) if 5 in setted: setted.remove(5) if len(setted) > 0: return False else: return True n = int(input()) m = int(input()) g = gcd(n, m) n = n // g m = m // g p = primes(m) a = isTerminate(p) if a: ans = n / m s_ans = str(ans) for i in range(len(s_ans) - 1, -1, -1): if s_ans[i] != '0' and s_ans[i] != '.': print(s_ans[i]) break else: print(-1)