結果

問題 No.791 うし数列
ユーザー buriburiburiburi
提出日時 2019-10-12 20:10:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 168 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 65,032 KB
最終ジャッジ日時 2024-05-06 18:16:15
合計ジャッジ時間 1,702 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 55 ms
64,236 KB
testcase_02 AC 54 ms
64,304 KB
testcase_03 AC 48 ms
63,212 KB
testcase_04 WA -
testcase_05 AC 48 ms
63,564 KB
testcase_06 AC 49 ms
63,444 KB
testcase_07 AC 50 ms
63,288 KB
testcase_08 WA -
testcase_09 AC 51 ms
64,168 KB
testcase_10 AC 50 ms
64,248 KB
testcase_11 AC 49 ms
62,764 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