結果

問題 No.18 うーさー暗号
ユーザー MizunoMizuno
提出日時 2024-09-12 12:00:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 296 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 53,892 KB
最終ジャッジ日時 2024-09-12 12:00:33
合計ジャッジ時間 1,916 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,292 KB
testcase_01 AC 38 ms
52,688 KB
testcase_02 AC 37 ms
52,180 KB
testcase_03 AC 39 ms
53,696 KB
testcase_04 AC 37 ms
52,876 KB
testcase_05 AC 38 ms
52,252 KB
testcase_06 AC 39 ms
53,688 KB
testcase_07 AC 39 ms
52,756 KB
testcase_08 AC 38 ms
53,152 KB
testcase_09 AC 53 ms
52,892 KB
testcase_10 AC 38 ms
51,872 KB
testcase_11 AC 38 ms
52,924 KB
testcase_12 AC 38 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def decrypt_u_sa_code(S):
    decrypted = []
    for i, c in enumerate(S):
        shift = (ord(c) - ord('A') - (i + 1)) % 26
        decrypted.append(chr(ord('A') + shift))
    return ''.join(decrypted)

# 入力の取得
S = input()

# 復号した文字列の出力
print(decrypt_u_sa_code(S))
0