結果

問題 No.327 アルファベット列
ユーザー btk
提出日時 2015-12-21 21:54:48
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 1,511 ms
コンパイル使用メモリ 159,356 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-06 22:00:37
合計ジャッジ時間 2,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int sz=1;
    LL sum=26;
    LL N;cin>>N;
    while(N>=sum){
        N-=sum;
        sum*=26;
        sz++;
    }
    string res;
    while(sz--){
        res+='A'+N%26;
        N/=26;
    }
    reverse(res.begin(),res.end());
    cout<<res<<endl;
}
0