結果

問題 No.219 巨大数の概算
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-25 00:00:09
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 32 ms / 1,500 ms
コード長 288 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 194,924 KB
最終ジャッジ日時 2025-01-07 14:52:46
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    int n;cin>>n;
    while (n--) {
        ll a,b;
        cin>>a>>b;
        double c=b*log10(a);
        int d=pow(10,c-floor(c)+1);
        cout<<d/10<<' '<<d%10<<' '<<(ll)c<<endl;
    }
    return 0;
}
0