結果

問題 No.791 うし数列
ユーザー _KingdomOfMoray
提出日時 2019-12-08 11:39:54
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-29 23:13:20
合計ジャッジ時間 1,999 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()

str1 = n[0]
str2 = n[1:len(n)]
right = '3' * (len(n)-1)

res = 0

if len(n) == 1:
    res = -1
else:
    if '1' == str1 and right == str2:
        res = len(n) - 1
    else:
        res = -1
    
print(res)
0