結果

問題 No.1217 せしすせそ
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-09-04 21:21:24
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 1,043 ms
コンパイル使用メモリ 87,052 KB
実行使用メモリ 71,512 KB
最終ジャッジ日時 2023-08-17 14:40:12
合計ジャッジ時間 2,892 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
71,428 KB
testcase_01 AC 79 ms
71,248 KB
testcase_02 AC 78 ms
71,512 KB
testcase_03 AC 80 ms
71,420 KB
testcase_04 AC 78 ms
71,188 KB
testcase_05 AC 76 ms
71,424 KB
testcase_06 AC 75 ms
71,488 KB
testcase_07 AC 74 ms
71,348 KB
testcase_08 AC 74 ms
71,248 KB
testcase_09 AC 75 ms
71,268 KB
testcase_10 AC 75 ms
71,356 KB
testcase_11 AC 75 ms
71,248 KB
testcase_12 AC 73 ms
71,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = "abcdefghijklmnopqrstuvwxyz"

T = input()

for i in range(26):
    if S[i] != T[i]:
        print (S[i] + "to" + T[i])
0