結果
| 問題 | No.428 小数から逃げる夢 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2023-01-26 10:57:14 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 3 ms / 1,000 ms | 
| コード長 | 739 bytes | 
| コンパイル時間 | 1,526 ms | 
| コンパイル使用メモリ | 169,456 KB | 
| 実行使用メモリ | 6,948 KB | 
| 最終ジャッジ日時 | 2024-06-27 06:59:45 | 
| 合計ジャッジ時間 | 4,305 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 100 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll INF = 1ll << 60;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    string D = "0.1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991";
    int N;
    cin >> N;
    string ans;
    ll v = 0;
    for(int i = 0; i + 2 < D.size(); i++){
        v += (D.rbegin()[i] - '0') * N;
        ans += v % 10 + '0';
        v /= 10;
    }
    ans += '.';
    while(v){
        ans += v % 10 + '0';
        v /= 10;
    }
    if(ans.back() == '.')ans += '0';
    reverse(ans.begin(), ans.end());
    cout << ans << '\n';
}
            
            
            
        