結果

問題 No.2034 Anti Lexicography
ユーザー zozo
提出日時 2022-09-15 10:22:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 375 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,256 KB
最終ジャッジ日時 2024-12-16 01:53:08
合計ジャッジ時間 32,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,128 KB
testcase_01 AC 32 ms
22,108 KB
testcase_02 AC 33 ms
15,872 KB
testcase_03 AC 31 ms
22,240 KB
testcase_04 AC 31 ms
16,000 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

c=int(input())
st=str(input())
import string
asc=string.ascii_letters
sum=0
result=""
for i in range(c):
    sum+=(int(ord(st[i]))-96)*(26**(c-i-1))
re=(26**c-sum)
for i in range(c):
    if i==c-1:
        result+=chr(int((re%(26**(c-i))-re%(26**(c-i-1)))/(26**(c-i-1)))+97)
    else:
        result+=chr(int((re%(26**(c-i))-re%(26**(c-i-1)))/(26**(c-i-1)))+98)
print(result)
0