結果

問題 No.791 うし数列
ユーザー buriburiburiburi
提出日時 2019-10-12 20:10:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 168 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2024-11-29 02:55:24
合計ジャッジ時間 1,869 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 60 ms
62,848 KB
testcase_02 AC 57 ms
62,848 KB
testcase_03 AC 56 ms
62,464 KB
testcase_04 WA -
testcase_05 AC 56 ms
62,720 KB
testcase_06 AC 57 ms
62,592 KB
testcase_07 AC 56 ms
62,592 KB
testcase_08 WA -
testcase_09 AC 56 ms
62,848 KB
testcase_10 AC 57 ms
62,720 KB
testcase_11 AC 56 ms
62,592 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import re


n = input()
if n[0] != 1:
    print('-1')
else:
    content = n[1:]
    if re.match('3+', content):
        print(len(content))
    else:
        print(-1)
0