結果

問題 No.327 アルファベット列
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-22 11:06:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 54,024 KB
最終ジャッジ日時 2024-07-04 06:17:42
合計ジャッジ時間 3,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,488 KB
testcase_01 AC 34 ms
51,940 KB
testcase_02 AC 32 ms
52,824 KB
testcase_03 AC 34 ms
52,020 KB
testcase_04 AC 32 ms
52,824 KB
testcase_05 AC 34 ms
52,188 KB
testcase_06 AC 33 ms
51,816 KB
testcase_07 AC 33 ms
52,332 KB
testcase_08 AC 33 ms
52,748 KB
testcase_09 AC 33 ms
53,348 KB
testcase_10 AC 35 ms
52,948 KB
testcase_11 AC 33 ms
52,952 KB
testcase_12 AC 34 ms
51,816 KB
testcase_13 AC 34 ms
52,960 KB
testcase_14 AC 33 ms
53,540 KB
testcase_15 AC 34 ms
52,264 KB
testcase_16 AC 34 ms
52,152 KB
testcase_17 AC 33 ms
52,248 KB
testcase_18 AC 34 ms
53,104 KB
testcase_19 AC 36 ms
52,616 KB
testcase_20 AC 34 ms
51,748 KB
testcase_21 AC 34 ms
53,636 KB
testcase_22 AC 34 ms
52,152 KB
testcase_23 AC 33 ms
52,404 KB
testcase_24 AC 32 ms
53,196 KB
testcase_25 AC 32 ms
53,132 KB
testcase_26 AC 33 ms
52,144 KB
testcase_27 AC 33 ms
52,416 KB
testcase_28 AC 35 ms
52,184 KB
testcase_29 AC 34 ms
52,024 KB
testcase_30 AC 33 ms
52,064 KB
testcase_31 AC 33 ms
53,564 KB
testcase_32 AC 32 ms
52,708 KB
testcase_33 AC 31 ms
53,004 KB
testcase_34 AC 32 ms
52,948 KB
testcase_35 AC 31 ms
53,152 KB
testcase_36 AC 32 ms
52,768 KB
testcase_37 AC 33 ms
53,168 KB
testcase_38 AC 32 ms
53,204 KB
testcase_39 AC 33 ms
51,940 KB
testcase_40 AC 33 ms
51,904 KB
testcase_41 AC 33 ms
51,700 KB
testcase_42 AC 32 ms
52,120 KB
testcase_43 AC 32 ms
54,024 KB
testcase_44 AC 33 ms
52,248 KB
testcase_45 AC 33 ms
51,904 KB
testcase_46 AC 32 ms
52,272 KB
testcase_47 AC 32 ms
52,280 KB
testcase_48 AC 35 ms
52,404 KB
testcase_49 AC 33 ms
53,152 KB
testcase_50 AC 33 ms
52,360 KB
testcase_51 AC 34 ms
53,088 KB
testcase_52 AC 33 ms
52,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

i = 1
temp = 0
while temp <= n:
    temp += pow(26, i)
    i += 1
temp -= pow(26, i-1)
R = n-temp

res = []
for k in range(i-1):
    q, r = divmod(R, 26)
    res.append(chr(r+ord('A')))
    R = q
res.reverse()
res = ''.join(res)
print(res)
0