結果
問題 | No.219 巨大数の概算 |
ユーザー | not_522 |
提出日時 | 2015-08-04 00:38:45 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 34 ms / 1,500 ms |
コード長 | 307 bytes |
コンパイル時間 | 1,213 ms |
コンパイル使用メモリ | 158,584 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 11:20:48 |
合計ジャッジ時間 | 4,583 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 51 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; for (int i = 0; i < n; ++i) { double a, b; cin >> a >> b; double res = log10(a) * b; int xy = pow(10, fmod(res, 1)) * 10; cout << xy / 10 << " " << xy % 10 << " " << (long long)floor(res) << endl; } }