結果

問題 No.428 小数から逃げる夢
ユーザー ebicochineal
提出日時 2016-10-21 17:40:53
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 512 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 56,692 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-23 16:47:19
合計ジャッジ時間 3,034 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 100
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

const string D = "0.1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991";
int main() {
    string s = "";
    int a = 0, n;
    cin >> n;
    for (int i = D.size()-1; i > 1; --i) {
        a = a + ((int)D[i] - 48) * n;
        s = ((char)(a % 10 + 48)) + s;
        a /= 10;
    }
    cout << a << "." << s << endl;
    return 0;
}
0