結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,264 KB
testcase_01 AC 35 ms
53,084 KB
testcase_02 AC 35 ms
52,236 KB
testcase_03 AC 34 ms
53,488 KB
testcase_04 AC 37 ms
52,624 KB
testcase_05 AC 37 ms
52,312 KB
testcase_06 AC 35 ms
52,480 KB
testcase_07 AC 34 ms
53,164 KB
testcase_08 AC 34 ms
52,756 KB
testcase_09 AC 38 ms
52,688 KB
testcase_10 AC 37 ms
52,164 KB
testcase_11 AC 38 ms
52,636 KB
testcase_12 AC 38 ms
51,816 KB
testcase_13 AC 38 ms
52,820 KB
testcase_14 AC 37 ms
52,448 KB
testcase_15 AC 36 ms
52,084 KB
testcase_16 AC 37 ms
53,168 KB
testcase_17 AC 35 ms
52,240 KB
testcase_18 AC 35 ms
53,368 KB
testcase_19 AC 34 ms
51,692 KB
testcase_20 AC 35 ms
52,028 KB
testcase_21 AC 35 ms
52,484 KB
testcase_22 AC 35 ms
52,112 KB
testcase_23 AC 33 ms
52,700 KB
testcase_24 AC 33 ms
53,232 KB
testcase_25 AC 33 ms
51,872 KB
testcase_26 AC 35 ms
53,020 KB
testcase_27 AC 34 ms
52,352 KB
testcase_28 AC 33 ms
52,760 KB
testcase_29 AC 33 ms
52,148 KB
testcase_30 AC 33 ms
52,056 KB
testcase_31 AC 35 ms
51,748 KB
testcase_32 AC 33 ms
52,348 KB
testcase_33 AC 33 ms
52,416 KB
testcase_34 AC 34 ms
53,056 KB
testcase_35 AC 33 ms
52,948 KB
testcase_36 AC 33 ms
53,368 KB
testcase_37 AC 34 ms
53,040 KB
testcase_38 AC 36 ms
52,456 KB
testcase_39 AC 34 ms
52,964 KB
testcase_40 AC 33 ms
52,208 KB
testcase_41 AC 34 ms
51,868 KB
testcase_42 AC 34 ms
52,340 KB
testcase_43 AC 34 ms
53,140 KB
testcase_44 AC 33 ms
53,152 KB
testcase_45 AC 33 ms
52,680 KB
testcase_46 AC 33 ms
52,836 KB
testcase_47 AC 34 ms
52,792 KB
testcase_48 AC 35 ms
52,004 KB
testcase_49 AC 33 ms
51,628 KB
testcase_50 AC 34 ms
53,156 KB
testcase_51 AC 35 ms
53,564 KB
testcase_52 AC 34 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

i = 1
temp = 0
while temp <= n:
    temp += pow(26, i)
    i += 1
temp -= 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