結果
問題 | No.2165 Let's Play Nim! |
ユーザー | akakimidori |
提出日時 | 2022-12-16 00:06:08 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,096 bytes |
コンパイル時間 | 1,039 ms |
コンパイル使用メモリ | 169,224 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 2.10 |
最終ジャッジ日時 | 2024-04-26 23:46:44 |
合計ジャッジ時間 | 5,084 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | AC | 23 ms
24,812 KB |
testcase_31 | RE | - |
testcase_32 | RE | - |
evil_2_big_1.txt | RE | - |
evil_2_big_2.txt | RE | - |
evil_2_big_3.txt | RE | - |
evil_big_1.txt | RE | - |
evil_big_2.txt | RE | - |
evil_big_3.txt | RE | - |
ソースコード
fn main() { let _n = read()[0]; let mut a = read(); let find = |a: &[i64]| -> (usize, i64) { let xor = a.iter().fold(0, |s, a| s ^ *a); assert!(xor > 0); for (i, &a) in a.iter().enumerate() { for j in 1..=a { if xor ^ a ^ (a - j) == 0 { return (i, j); } } } todo!() }; let xor = a.iter().fold(0, |s, a| s ^ *a); if xor > 0 { println!("1"); let (x, k) = find(&a); a[x] -= k; println!("{} {}", x + 1, k); } else { println!("2"); } loop { let res = read()[0]; if res == -1 { break; } let (x, k) = { let a = read(); (a[0] as usize - 1, a[1]) }; a[x] -= k; let (x, k) = find(&a); a[x] -= k; println!("{} {}", x + 1, k); } } fn read() -> Vec<i64> { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); s.trim().split_whitespace().flat_map(|s| s.parse()).collect() }