結果

問題 No.18 うーさー暗号
ユーザー TomoyarnTomoyarn
提出日時 2022-02-18 17:47:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 217 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,832 KB
最終ジャッジ日時 2024-06-29 08:05:04
合計ジャッジ時間 1,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,432 KB
testcase_01 AC 37 ms
51,876 KB
testcase_02 AC 34 ms
52,068 KB
testcase_03 AC 33 ms
53,832 KB
testcase_04 AC 34 ms
52,572 KB
testcase_05 AC 33 ms
52,724 KB
testcase_06 AC 34 ms
52,180 KB
testcase_07 AC 34 ms
52,644 KB
testcase_08 AC 34 ms
53,280 KB
testcase_09 AC 35 ms
52,740 KB
testcase_10 AC 34 ms
52,552 KB
testcase_11 AC 34 ms
53,432 KB
testcase_12 AC 33 ms
53,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder No.18 うーさー暗号
ans = ""
S = input()
for i in range(len(S)):
    j = (i + 1) % 26
    x = ord(S[i]) - j
    if x >= 65:
        ans += chr(x)
    else:
        ans += chr(26 + x)
    
print(ans)


0