結果
問題 |
No.791 うし数列
|
ユーザー |
![]() |
提出日時 | 2020-12-21 22:41:57 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 301 bytes |
コンパイル時間 | 1,981 ms |
コンパイル使用メモリ | 192,896 KB |
最終ジャッジ日時 | 2025-01-17 05:43:25 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 10 WA * 5 |
ソースコード
#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; } } cout<<S.length()-1<<endl; return 0; }