結果
問題 | No.726 Tree Game |
ユーザー | alpha_virginis |
提出日時 | 2018-08-24 23:11:31 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 2,300 bytes |
コンパイル時間 | 11,559 ms |
コンパイル使用メモリ | 401,592 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 09:22:59 |
合計ジャッジ時間 | 13,097 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
ソースコード
#[allow(unused_imports)] use std::cmp::{min,max}; #[allow(unused_imports)] use std::collections::BTreeMap; #[allow(unused_imports)] use std::ops::*; #[allow(unused_imports)] use std::collections::BinaryHeap; #[allow(unused_macros)] macro_rules! tf { ($c:expr, $t:expr, $f:expr) => {{ if $c { $t } else { $f } }}; } fn is_prime(x: i64) -> bool { if x <= 1 { return false; } for i in 2i64.. { if i * i > x { break; } if x % i == 0 { return false; } } true } fn main() { assert_eq!(is_prime(2), true); assert_eq!(is_prime(3), true); assert_eq!(is_prime(4), false); assert_eq!(is_prime(5), true); assert_eq!(is_prime(6), false); assert_eq!(is_prime(7), true); let (y,x) = { let xs = read_vec_i64(); (xs[0], xs[1]) }; assert!( 1 <= y && y <= 1_000_000_000 ); assert!( 1 <= x && x <= 1_000_000_000 ); if y == 2 || x == 2 || (is_prime(y) && is_prime(x)) { println!("Second"); return; } let y2 = { let mut res = y; for i in y+1.. { if is_prime(i) { res = i; break; } } res }; let x2 = { let mut res = x; for i in x+1.. { if is_prime(i) { res = i; break; } } res }; eprintln!("{}, {}", y2, x2); println!("{}", tf!(((y2-y)+(x2-x)) % 2 != 0, "First", "Second")); } #[allow(dead_code)] fn read_line() -> String { let mut ret = String::new(); std::io::stdin().read_line(&mut ret).ok(); ret.pop(); return ret; } #[allow(dead_code)] fn read_i64() -> i64 { let ss = read_line(); return ss.parse::<i64>().unwrap(); } #[allow(dead_code)] fn read_vec_i64() -> Vec<i64> { let mut res = vec![]; let ss = read_line(); for ts in ss.split_whitespace() { let x = ts.parse::<i64>().unwrap(); res.push(x); } return res; } use std::fmt::Display; #[allow(dead_code)] fn write_vec<T: Display>(xs: &Vec<T>) { if xs.len() == 0 { println!(""); return; } print!("{}", xs[0]); for i in 1..xs.len() { print!(" {}", xs[i]); } println!(""); }