結果

問題 No.327 アルファベット列
コンテスト
ユーザー imulan
提出日時 2016-02-03 19:38:33
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 673 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 889 ms
コンパイル使用メモリ 177,804 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-04-10 01:55:44
合計ジャッジ時間 2,299 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 1 WA * 49
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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

typedef long long ll;
#define rep(i,n) for(int i=0;i<(n);++i)
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); itr++)
#define mp make_pair
#define pb push_back
#define fi first
#define sc second

int main(int argc, char const *argv[]) {
  ll pw[10]={0};
  pw[0]=1;
  rep(i,9) pw[i+1]=pw[i]*26;

  ll n;
  cin >>n;

  ll tmp=n;
  ll len=0;
  while(1){
    ++len;
    tmp/=26;
    if(tmp==0) break;
  }

  std::vector<ll> v;
  for(ll i=0; i<len; ++i){
    v.pb(((n-pw[i]+1)/pw[i])%26);
  }

  string s="ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  rep(i,v.size()) printf("%c", s[v[i]]);
  printf("\n");

  return 0;
}
0