結果

問題 No.219 巨大数の概算
ユーザー face4face4
提出日時 2018-09-21 20:56:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 26 ms / 1,500 ms
コード長 552 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 71,792 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-18 08:47:25
合計ジャッジ時間 3,871 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;

typedef long long ll;

int main(){
    int n;
    cin >> n;

    double table[90] = {};
    for(int i = 0; i < 90; i++){
        table[i] = log10(i+10) - 1;
    }

    int a, b, y;
    ll z;
    for(int i = 0; i < n; i++){
        cin >> a >> b;
        double x = log10(a) * b;
        z = x;
        x -= z;
        y = lower_bound(table, table+90, x) - table -1 + 10;
        y = max(10, y);
        cout << y/10 << " " << y%10 << " " << z << endl;
    }
 
    return 0;
}
0