結果
| 問題 |
No.219 巨大数の概算
|
| コンテスト | |
| ユーザー |
Bantako
|
| 提出日時 | 2017-08-24 12:52:33 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 617 bytes |
| コンパイル時間 | 1,513 ms |
| コンパイル使用メモリ | 166,232 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-15 14:16:11 |
| 合計ジャッジ時間 | 11,091 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 51 |
コンパイルメッセージ
main.cpp:13:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
13 | main(){
| ^~~~
ソースコード
#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
int INF = 1e9;
int MOD = 1000000007;
double power(double x,ll n){
if(n == 0)return 1;
double ans = power(x*x,n/2);
if(n % 2 == 1)ans = ans * x;
ans /= pow(10,floor(log10(ans)));
return ans;
}
main(){
int N;
cin >> N;
for(int i = 0;i < N;i++){
ll A,B;
cin >> A >> B;
double digit = log10(A);
double d = 1.*A/pow(10,floor(digit));
double ans = power(d,B);
// cout << d << " " << ans << endl;
printf("%d %d %d\n",(int)ans,(int)(ans*10)%10,(int)(digit*B));
}
}
Bantako