結果

問題 No.219 巨大数の概算
ユーザー hogeover30hogeover30
提出日時 2015-10-31 02:18:49
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 35 ms / 1,500 ms
コード長 428 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 60,092 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 11:46:33
合計ジャッジ時間 3,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
    int n; cin>>n;
    while (n--) {
        double a, b, x, y, z;
        cin>>a>>b;
        auto t=pow(10.0, modf(log10(a)*b, &z));
        while (t>10) {
            t*=0.1;
            ++z;
        }
        while (t<1) {
            t*=10;
            --z;
        }
        y=modf(t, &x);
        cout<<x<<" "<<int(10*y)<<" "<<long(z)<<endl;
    }
}
0