結果

問題 No.327 アルファベット列
ユーザー tjake
提出日時 2015-12-20 00:12:40
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 118 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-17 11:03:39
合計ジャッジ時間 1,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 1 WA * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
s = ""
while 1:
    s = chr((n%26 if n>25 else n-1)+65)+s
    n /= 26
    if not n:
        break
print s
0