結果
| 問題 |
No.791 うし数列
|
| コンテスト | |
| ユーザー |
chacoder1
|
| 提出日時 | 2020-12-21 22:46:05 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 377 bytes |
| コンパイル時間 | 2,041 ms |
| コンパイル使用メモリ | 193,312 KB |
| 最終ジャッジ日時 | 2025-01-17 05:44:00 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
string S;
cin>>S;
if(S.at(0) != '1'){
cout<<-1<<endl;
return 0;
}
for(int i=1;i<S.length();i++){
if(S.at(i) != '3'){
cout<<-1<<endl;
return 0;
}
}
if(S.length()==1){
cout<<-1<<endl;
return 0;
}
cout<<S.length()-1<<endl;
return 0;
}
chacoder1