結果

問題 No.219 巨大数の概算
ユーザー kk
提出日時 2021-01-20 11:44:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 91 ms / 1,500 ms
コード長 727 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 196,772 KB
最終ジャッジ日時 2025-01-18 02:49:25
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)

tuple<int, int, long long> solve(int a, int b) {
  // a ^ b = x  * 10 ^ z
  // blog(a) = log(x) + zlog(10)

  double target = b * log(a);
  long long z = target / log(10);
  int x = 1;
  int y = 0;
  for (int d = 10; d < 100; d++) {
    if (target >= log(d / 10.0) + z * log(10)) {
      x = d / 10;
      y = d % 10;
    }
  }
  return tuple(x, y, z);
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n;
  cin >> n;
  for (int i = 0; i < n; i++) {
    int a, b;
    cin >> a >> b;
    int x, y;
    long long z;
    tie(x, y, z) = solve(a, b);
    cout << x << " " << y << " " << z << endl;
  }

  return 0;
}
0