結果

問題 No.18 うーさー暗号
ユーザー MichirakaraMichirakara
提出日時 2022-11-28 02:14:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 98 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 60,276 KB
最終ジャッジ日時 2024-10-04 19:20:27
合計ジャッジ時間 1,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,244 KB
testcase_01 AC 31 ms
52,532 KB
testcase_02 AC 31 ms
52,396 KB
testcase_03 AC 35 ms
60,276 KB
testcase_04 AC 31 ms
52,760 KB
testcase_05 AC 33 ms
52,644 KB
testcase_06 AC 32 ms
53,016 KB
testcase_07 AC 35 ms
60,008 KB
testcase_08 AC 36 ms
59,516 KB
testcase_09 AC 33 ms
53,280 KB
testcase_10 AC 31 ms
52,428 KB
testcase_11 AC 30 ms
53,556 KB
testcase_12 AC 31 ms
52,688 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