結果

問題 No.327 アルファベット列
ユーザー FromBooskaFromBooska
提出日時 2023-02-24 19:45:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,365 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-09-13 03:53:24
合計ジャッジ時間 3,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,832 KB
testcase_01 AC 37 ms
52,160 KB
testcase_02 AC 38 ms
52,304 KB
testcase_03 AC 38 ms
52,456 KB
testcase_04 AC 37 ms
53,160 KB
testcase_05 AC 37 ms
53,120 KB
testcase_06 AC 38 ms
52,260 KB
testcase_07 AC 37 ms
52,032 KB
testcase_08 AC 39 ms
52,672 KB
testcase_09 AC 37 ms
53,108 KB
testcase_10 AC 37 ms
53,344 KB
testcase_11 AC 37 ms
52,248 KB
testcase_12 AC 36 ms
53,224 KB
testcase_13 AC 38 ms
53,284 KB
testcase_14 AC 37 ms
52,740 KB
testcase_15 AC 37 ms
52,992 KB
testcase_16 AC 37 ms
52,644 KB
testcase_17 AC 36 ms
52,176 KB
testcase_18 AC 37 ms
52,444 KB
testcase_19 AC 37 ms
52,440 KB
testcase_20 AC 37 ms
52,740 KB
testcase_21 AC 37 ms
53,192 KB
testcase_22 AC 37 ms
52,880 KB
testcase_23 AC 37 ms
53,096 KB
testcase_24 AC 37 ms
53,420 KB
testcase_25 AC 37 ms
52,344 KB
testcase_26 AC 37 ms
52,768 KB
testcase_27 AC 39 ms
52,440 KB
testcase_28 AC 39 ms
53,688 KB
testcase_29 AC 38 ms
52,572 KB
testcase_30 AC 37 ms
52,248 KB
testcase_31 AC 38 ms
53,136 KB
testcase_32 AC 37 ms
52,444 KB
testcase_33 AC 37 ms
52,264 KB
testcase_34 AC 38 ms
52,212 KB
testcase_35 AC 38 ms
52,684 KB
testcase_36 AC 38 ms
52,824 KB
testcase_37 AC 37 ms
52,592 KB
testcase_38 AC 39 ms
53,424 KB
testcase_39 AC 38 ms
52,600 KB
testcase_40 AC 37 ms
53,216 KB
testcase_41 AC 37 ms
53,476 KB
testcase_42 AC 38 ms
52,412 KB
testcase_43 AC 38 ms
53,256 KB
testcase_44 AC 36 ms
52,720 KB
testcase_45 AC 37 ms
52,280 KB
testcase_46 AC 38 ms
52,012 KB
testcase_47 AC 38 ms
53,484 KB
testcase_48 AC 37 ms
52,368 KB
testcase_49 AC 37 ms
52,376 KB
testcase_50 AC 37 ms
53,432 KB
testcase_51 AC 36 ms
52,700 KB
testcase_52 AC 37 ms
53,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 数字Nを26進数に直せばいいと思ったがうまくいかない
# 簡単と思って超苦しんだ
# まず26進数として何桁になるのかを調べる、それがd_count+1
# たとえば26は26以上なのでd_count=1であり2桁
# この26進数を書くと以下のようになる
# 0=A,,,,25=Z
# 26**1*1+0=AA,,,,26*25+25=ZZ
# 26**2*1+0=AAA,,,
# https://yukicoder.me/problems/no/327/editorial
# たとえばN=10000のとき
# 10000>=26なので26を引く(1桁の数字の分)、9974>=26**2なので26**2を引いて(2桁の数字の分)9298
# この9298を26**2の桁、26**1の桁、26**0の桁に分解すると
# 9298=26**2*13 (N) + 26**1*19 (T) + 26**0*16 (Q) = NTQ

N = int(input())
N_remainder = N
alphabets = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
d_count = 0
# まず桁数を調べる
# そしてその桁数までの数を引く、たとえば3桁なら1桁の分と2桁の分
# この引き算が重要

for i in range(10): 
    # 26**10 > 10**12
    if N_remainder >= 26**(d_count+1):
        N_remainder -= 26**(d_count+1)
        d_count += 1
    else:
        break
#print('d_count', d_count, 'N_remainder', N_remainder)
    
ans_list = []
for i in range(d_count+1):
    num = N_remainder//(26**(d_count-i))
    ans_list.append(alphabets[num])
    N_remainder -= num*(26**(d_count-i))
#print(ans_list)

ans = ''.join(ans_list)
print(ans)
0