結果

問題 No.1217 せしすせそ
ユーザー miya145592miya145592
提出日時 2023-04-30 23:24:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 53,788 KB
最終ジャッジ日時 2024-11-19 13:02:57
合計ジャッジ時間 1,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,660 KB
testcase_01 AC 33 ms
52,120 KB
testcase_02 AC 33 ms
52,820 KB
testcase_03 AC 33 ms
53,424 KB
testcase_04 AC 33 ms
52,108 KB
testcase_05 AC 34 ms
53,356 KB
testcase_06 AC 33 ms
53,432 KB
testcase_07 AC 38 ms
51,636 KB
testcase_08 AC 34 ms
52,500 KB
testcase_09 AC 33 ms
52,692 KB
testcase_10 AC 32 ms
53,788 KB
testcase_11 AC 34 ms
52,320 KB
testcase_12 AC 35 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
A = "abcdefghijklmnopqrstuvwxyz"
for i in range(len(S)):
    if S[i]!=A[i]:
        print(f"{A[i]}to{S[i]}")
        exit()
0