結果

問題 No.327 アルファベット列
ユーザー FromBooskaFromBooska
提出日時 2023-03-11 16:08:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 53,864 KB
最終ジャッジ日時 2024-09-18 06:29:57
合計ジャッジ時間 3,467 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,028 KB
testcase_01 AC 34 ms
52,736 KB
testcase_02 AC 34 ms
52,736 KB
testcase_03 AC 34 ms
52,500 KB
testcase_04 AC 38 ms
51,900 KB
testcase_05 AC 37 ms
52,888 KB
testcase_06 AC 37 ms
52,144 KB
testcase_07 AC 37 ms
52,464 KB
testcase_08 AC 36 ms
53,080 KB
testcase_09 AC 38 ms
52,492 KB
testcase_10 AC 38 ms
51,924 KB
testcase_11 AC 34 ms
51,700 KB
testcase_12 AC 36 ms
52,084 KB
testcase_13 AC 34 ms
52,384 KB
testcase_14 AC 33 ms
53,056 KB
testcase_15 AC 33 ms
52,212 KB
testcase_16 AC 33 ms
51,996 KB
testcase_17 AC 32 ms
53,128 KB
testcase_18 AC 32 ms
51,960 KB
testcase_19 AC 32 ms
53,532 KB
testcase_20 AC 34 ms
52,932 KB
testcase_21 AC 34 ms
52,140 KB
testcase_22 AC 32 ms
52,792 KB
testcase_23 AC 33 ms
52,116 KB
testcase_24 AC 35 ms
52,000 KB
testcase_25 AC 33 ms
52,388 KB
testcase_26 AC 32 ms
52,184 KB
testcase_27 AC 34 ms
52,776 KB
testcase_28 AC 33 ms
52,472 KB
testcase_29 AC 33 ms
51,996 KB
testcase_30 AC 32 ms
53,148 KB
testcase_31 AC 33 ms
52,408 KB
testcase_32 AC 33 ms
53,020 KB
testcase_33 AC 32 ms
53,864 KB
testcase_34 AC 33 ms
53,184 KB
testcase_35 AC 34 ms
52,548 KB
testcase_36 AC 34 ms
52,652 KB
testcase_37 AC 32 ms
52,076 KB
testcase_38 AC 33 ms
53,216 KB
testcase_39 AC 32 ms
53,440 KB
testcase_40 AC 33 ms
52,576 KB
testcase_41 AC 35 ms
52,388 KB
testcase_42 AC 35 ms
53,792 KB
testcase_43 AC 35 ms
52,700 KB
testcase_44 AC 35 ms
52,976 KB
testcase_45 AC 37 ms
52,944 KB
testcase_46 AC 36 ms
52,580 KB
testcase_47 AC 36 ms
53,124 KB
testcase_48 AC 36 ms
53,052 KB
testcase_49 AC 35 ms
52,156 KB
testcase_50 AC 35 ms
52,892 KB
testcase_51 AC 32 ms
52,672 KB
testcase_52 AC 33 ms
52,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 26**1個までは1文字、そこから26**2個は2文字、、、
# それで何文字かをまず決める、そのときにその文字数までの数を引く
# あとは26進数

letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

N = int(input())
N_remainder = N
for d in range(1, 21):
    # 10**12 < 26**10
    if N_remainder >= 26**d:
        N_remainder -= 26**d
    else:
        break

#print(N_remainder, d)

ans_rev = []
for digit in range(1, d+1):
    num = N_remainder%(26)
    ans_rev.append(letters[num])
    N_remainder //= 26
ans = ans_rev[::-1]
print(''.join(ans))
0