結果
| 問題 |
No.446 ゆきこーだーの雨と雪 (1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-05-24 13:24:47 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 320 bytes |
| コンパイル時間 | 13,659 ms |
| コンパイル使用メモリ | 378,308 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-20 19:21:37 |
| 合計ジャッジ時間 | 14,806 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 13 |
ソースコード
use std::io::Read;
fn main() {
let mut s = String::new();
std::io::stdin().read_to_string(&mut s).unwrap();
let s = s.split_whitespace();
let a = s
.filter(|s| s.len() == 1 || &s[..1] != "0")
.flat_map(str::parse::<u16>)
.filter(|&x| x < 12346)
.count() == 2;
println!("{}", if a { "OK" } else { "NG" })
}