結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | nak3 |
提出日時 | 2017-11-03 12:44:07 |
言語 | Rust (1.77.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
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"); } }