結果

問題 No.2087 基数の変換
ユーザー Pachicobue
提出日時 2022-09-30 21:26:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 194,564 KB
最終ジャッジ日時 2025-02-07 18:57:29
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
int main()
{
    int a, b;std::cin >> a >> b;
    if(b == 0){
        std::cout << 0 << std::endl;
        return 0;
    }
    std::string ans;
    while(b){
        ans.push_back(b%a+'0');
        b/= a;
    }
    std::reverse(std::begin(ans), std::end(ans));
    std::cout << ans << std::endl;
    return 0;
}
0