結果

問題 No.791 うし数列
ユーザー Shawn stayC
提出日時 2020-06-06 14:39:20
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 1,779 ms
コンパイル使用メモリ 165,808 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 12:38:23
合計ジャッジ時間 2,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0; i<(n); i++)
using namespace std;
typedef long long ll;

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