結果

問題 No.25 有限小数
ユーザー purple_jwlpurple_jwl
提出日時 2015-03-10 23:36:59
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 854 bytes
コンパイル時間 1,453 ms
コンパイル使用メモリ 150,720 KB
実行使用メモリ 244,120 KB
最終ジャッジ日時 2023-09-06 23:05:19
合計ジャッジ時間 8,914 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,384 KB
testcase_09 AC 2 ms
4,384 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 1 ms
4,384 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0