結果

問題 No.499 7進数変換
ユーザー kosakkun
提出日時 2017-04-07 22:22:32
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 1,048 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 85,188 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-16 00:43:55
合計ジャッジ時間 1,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <algorithm>
#include <sstream>
#include <cmath>
#include <set>
#include <iomanip>
#include <deque>
#include <stdio.h>
using namespace std;

#define REP(i,n) for(int (i)=0;(i)<(int)(n);(i)++)
#define RREP(i,n) for(int (i)=(int)(n)-1;i>=0;i--)
#define FILL(Itr,n) fill((Itr).begin(),(Itr).end(),n)
#define REMOVE(Itr,n) (Itr).erase(remove((Itr).begin(),(Itr).end(),n),(Itr).end())
#define UNIQUE(Itr) sort((Itr).begin(),(Itr).end()); (Itr).erase(unique((Itr).begin(),(Itr).end()),(Itr).end())
#define LBOUND(Itr,val) lower_bound((Itr).begin(),(Itr).end(),(val))
#define UBOUND(Itr,val) upper_bound((Itr).begin(),(Itr).end(),(val))
#define MOD 1000000007
typedef long long ll;
typedef pair<int,int> P;


int main(){
    
    ll n; cin>>n;
    vector<int> ans;
    while(n!=0){
        ans.push_back(n%7);
        n/=7;
    }
    
    reverse(ans.begin(),ans.end());
    REP(i,ans.size())cout<<ans[i];
    cout<<endl;
    
    return 0;
}
0