結果

問題 No.2087 基数の変換
ユーザー Nzt3Nzt3
提出日時 2022-09-30 21:28:36
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 201,876 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-22 22:22:18
合計ジャッジ時間 3,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,M;
  cin>>N>>M;
  if(M==0){
    cout<<0<<'\n';
    return 0;
  }
  vector<int>ans;
  while(M){
    ans.push_back(M%N);
    M/=N;
  }
  for(int i=ans.size()-1;i>=0;i--)cout<<ans[i];
  cout<<'\n';

}
0