結果
問題 | No.2725 Coprime Game 2 |
ユーザー |
|
提出日時 | 2024-04-13 11:06:00 |
言語 | Rust (1.83.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,456 bytes |
コンパイル時間 | 12,033 ms |
コンパイル使用メモリ | 380,376 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-03 00:00:16 |
合計ジャッジ時間 | 14,092 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 3 WA * 5 |
コンパイルメッセージ
warning: unused import: `std::cmp::*` --> src/main.rs:1:5 | 1 | use std::cmp::*; | ^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: function `gcd` is never used --> src/main.rs:27:4 | 27 | fn gcd(x: usize, y: usize) -> usize { | ^^^ | = note: `#[warn(dead_code)]` on by default
ソースコード
use std::cmp::*;use std::io::Read;fn get_word() -> String {let stdin = std::io::stdin();let mut stdin=stdin.lock();let mut u8b: [u8; 1] = [0];loop {let mut buf: Vec<u8> = Vec::with_capacity(16);loop {let res = stdin.read(&mut u8b);if res.unwrap_or(0) == 0 || u8b[0] <= b' ' {break;} else {buf.push(u8b[0]);}}if buf.len() >= 1 {let ret = String::from_utf8(buf).unwrap();return ret;}}}fn get<T: std::str::FromStr>() -> T { get_word().parse().ok().unwrap() }fn gcd(x: usize, y: usize) -> usize {if x < y { gcd(y, x) } else if y == 0 { x } else { gcd(y, x % y) }}// https://yukicoder.me/problems/no/2725 (3)// 実験の結果、n = 2, 6, 18, 30, 42, 54, ... で後手必勝、それ以外で先手必勝であることがわかる。// これは n = 2, 6 + 12i とみなすことができる。// 6+12i が後手必勝なのは、先手は初手で奇数に行くしかなく、後手は 4 に行けば勝てるためである。// 他の場合で先手必勝なのもほとんど明らか。(12|N なら初手 5、2|N and not(3|N) なら初手 3 など)fn main() {let t: i32 = get();for _ in 0..t {let n: i64 = get();println!("{}", if n == 2 || n % 12 == 6 {"P"} else {"K"});}}