結果

問題 No.18 うーさー暗号
ユーザー MichirakaraMichirakara
提出日時 2022-11-28 02:14:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 98 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 59,788 KB
最終ジャッジ日時 2024-04-15 06:06:01
合計ジャッジ時間 1,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,952 KB
testcase_01 AC 34 ms
53,112 KB
testcase_02 AC 38 ms
52,424 KB
testcase_03 AC 43 ms
59,788 KB
testcase_04 AC 37 ms
53,300 KB
testcase_05 AC 36 ms
53,180 KB
testcase_06 AC 42 ms
53,724 KB
testcase_07 AC 40 ms
58,164 KB
testcase_08 AC 39 ms
58,692 KB
testcase_09 AC 38 ms
54,064 KB
testcase_10 AC 33 ms
53,104 KB
testcase_11 AC 34 ms
53,268 KB
testcase_12 AC 35 ms
53,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
a=[]
for i in range(len(s)):
    a.append(chr((ord(s[i])-65+~i)%26+65))
print(*a,sep="")
0