結果

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

ソースコード

diff #

def convert(N):
    res = ""
    while N:
        x = N % 26
        res += chr(ord('A') + x)
        N /= 26
    return res[::-1]

N = int(raw_input())
print convert(N)
0