結果
問題 |
No.25 有限小数
|
ユーザー |
![]() |
提出日時 | 2015-03-10 23:36:59 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 854 bytes |
コンパイル時間 | 1,462 ms |
コンパイル使用メモリ | 165,100 KB |
実行使用メモリ | 250,496 KB |
最終ジャッジ日時 | 2024-06-24 17:09:52 |
合計ジャッジ時間 | 8,533 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 TLE * 1 -- * 13 |
ソースコード
#include <bits/stdc++.h> #define REP(i, x, n) for(int i = x; i < (int)(n); i++) #define rep(i, n) REP(i, 0, n) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define F first #define S second #define mp make_pair using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> P; int main() { // ios_base::sync_with_stdio(false); ull N, M; cin >> N >> M; if(N % M == 0) { ull ans = N / M; while(ans % 10 == 0) ans /= 10; cout << ans % 10 << endl; } else { set<pair<ull, int>> d; N %= M; int ans = 0; while(N % M) { while(N < M) N *= 10; int v = N / M; if(d.count(mp(N, v))) { ans = -1; break; } d.insert(mp(N, v)); ans = v; N %= M; } cout << ans << endl; } return 0; }