結果

問題 No.1217 せしすせそ
ユーザー naru_1017naru_1017
提出日時 2020-09-04 22:33:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 10,712 KB
実行使用メモリ 9,096 KB
最終ジャッジ日時 2023-08-17 17:26:38
合計ジャッジ時間 1,289 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
9,060 KB
testcase_01 AC 27 ms
9,032 KB
testcase_02 AC 26 ms
9,004 KB
testcase_03 AC 26 ms
9,008 KB
testcase_04 AC 26 ms
9,040 KB
testcase_05 AC 26 ms
9,096 KB
testcase_06 AC 28 ms
9,036 KB
testcase_07 AC 27 ms
8,896 KB
testcase_08 AC 27 ms
8,996 KB
testcase_09 AC 27 ms
9,088 KB
testcase_10 AC 26 ms
8,956 KB
testcase_11 AC 26 ms
8,936 KB
testcase_12 AC 27 ms
9,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
#sys.setrecursionlimit(10**6)

from string import ascii_lowercase

s=input().rstrip()
t=ascii_lowercase
for i in range(len(s)):
    if s[i]!=t[i]:

        print(t[i]+"to"+s[i])
        break
0