結果
問題 |
No.446 ゆきこーだーの雨と雪 (1)
|
ユーザー |
![]() |
提出日時 | 2017-11-03 12:44:07 |
言語 | Rust (1.83.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 904 bytes |
コンパイル時間 | 12,938 ms |
コンパイル使用メモリ | 378,916 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 15:21:19 |
合計ジャッジ時間 | 14,096 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 4 |
other | WA * 13 |
ソースコード
use std::io; use std::str::FromStr; fn main() { let stdin = io::stdin(); let mut buf = String::new(); stdin.read_line(&mut buf).ok(); let mut it = buf.split_whitespace().map(|n| String::from_str(n).unwrap()); let a = it.next().unwrap(); let mut buf = String::new(); stdin.read_line(&mut buf).ok(); let mut it = buf.split_whitespace().map(|n| String::from_str(n).unwrap()); let b = it.next().unwrap(); println!("{}", a.len()); if a.chars().nth(0) == Some('0') && a.len() != 1 { println!("NG"); return; } println!("{}", b); println!("{:?}", b.chars().nth(0)); if b.chars().nth(0) == Some('0') && b.len() != 1 { println!("NG"); return; } let aa = a.parse::<i64>().is_ok(); let bb = b.parse::<i64>().is_ok(); if aa && bb { println!("OK"); } else { println!("NG"); } }