結果

問題 No.428 小数から逃げる夢
コンテスト
ユーザー t98slider
提出日時 2023-01-26 10:57:14
言語 C++14
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 739 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,144 ms
コンパイル使用メモリ 181,824 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2026-03-14 17:31:58
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 100
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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';
}
0