結果
| 問題 | No.791 うし数列 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-01-09 23:45:07 | 
| 言語 | Rust (1.83.0 + proconio) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 426 bytes | 
| コンパイル時間 | 15,692 ms | 
| コンパイル使用メモリ | 404,416 KB | 
| 実行使用メモリ | 6,816 KB | 
| 最終ジャッジ日時 | 2024-11-23 05:04:55 | 
| 合計ジャッジ時間 | 15,132 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 14 WA * 1 | 
ソースコード
use std::io::Read;
fn solve(n: &str) {
    let not_n = n.chars().next().unwrap().to_string() != "1" || n.chars().skip(1).any(|a| a.to_string() != "3");
    if not_n {
        println!("{}", -1);
    } else {
        println!("{}", n.len() - 1);
    }
}
fn main() {
    let mut n = String::new();
    std::io::stdin().read_to_string(&mut n).ok();
    let n: &str = n.trim().split('\n').next().unwrap().trim();
    solve(n);
}
            
            
            
        