結果

問題 No.791 うし数列
ユーザー 259_Momone259_Momone
提出日時 2019-02-22 21:22:49
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 316 bytes
コンパイル時間 1,076 ms
コンパイル使用メモリ 157,232 KB
実行使用メモリ 16,704 KB
最終ジャッジ日時 2024-11-25 05:06:37
合計ジャッジ時間 28,701 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
13,640 KB
testcase_02 WA -
testcase_03 AC 1 ms
13,632 KB
testcase_04 TLE -
testcase_05 AC 1 ms
13,632 KB
testcase_06 AC 1 ms
9,896 KB
testcase_07 WA -
testcase_08 TLE -
testcase_09 AC 1 ms
13,640 KB
testcase_10 WA -
testcase_11 AC 1 ms
13,640 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    char c;
    cin >> c;
    if(c != '1')return 0 & puts("-1");
    long i = 1;
    cin >> c;
    while(c == '3'){
        ++i;
        cin >> c;
        if('0' <= c && c <= '9' && c != '3')return 0 & puts("-1");
    }
    cout << i << endl;
    return 0;
}
0