結果

問題 No.791 うし数列
ユーザー mine691
提出日時 2019-03-15 22:21:13
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 1,598 ms
コンパイル使用メモリ 167,420 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 21:08:09
合計ジャッジ時間 2,227 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

ll N, M, K;

int main()
{
    string s;
    cin >> s;
    if (s.size() == 1)
    {
        puts("-1");
        return 0;
    }
    for (int i = 1; i < s.size(); i++)
    {
        if (s[0] == '1' && s[i] != '3')
        {
            puts("-1");
            return 0;
        }
    }
    cout << s.size() - 1 << endl;
}
0