結果
問題 | No.2379 Burnside's Theorem |
ユーザー | so-hey |
提出日時 | 2023-07-14 21:55:51 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,457 bytes |
コンパイル時間 | 12,469 ms |
コンパイル使用メモリ | 400,844 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-16 06:53:49 |
合計ジャッジ時間 | 13,573 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
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 | AC | 2 ms
5,376 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 5 ms
5,376 KB |
ソースコード
pub mod scanner { pub struct Scanner { buf: Vec<String>, } impl Scanner { pub fn new() -> Self { Self { buf: vec![] } } pub fn new_from(source: &str) -> Self { let source = String::from(source); let buf = Self::split(source); Self { buf } } pub fn next<T: std::str::FromStr>(&mut self) -> T { loop { if let Some(x) = self.buf.pop() { return x.parse().ok().expect(""); } let mut source = String::new(); std::io::stdin().read_line(&mut source).expect(""); self.buf = Self::split(source); } } fn split(source: String) -> Vec<String> { source .split_whitespace() .rev() .map(String::from) .collect::<Vec<_>>() } } } use crate::scanner::Scanner; fn main() { let mut scanner = Scanner::new(); let t = 1; for _ in 0..t { solve(&mut scanner); } } fn solve(scanner: &mut Scanner) { let n: usize = scanner.next(); let mut m = 1; while (m+1) * (m+1) <= n { m += 1; } let mut is_prime = vec![true; m+1]; is_prime[0] = false; is_prime[1] = false; for i in 2..m { if is_prime[i] { let mut j = i.pow(2); while j <= m { is_prime[j] = false; j += i; } } } let mut flag = false; for i in 2..=m { let mut x = n; if is_prime[i] { let mut cnt = 0; while x % i == 0 { x /= i; cnt += 1; } if cnt > 0 { if x == 1 { flag = true; break; } for j in i+1..=m { let mut y = x; if is_prime[j] { while y % j == 0 { y /= j; } if y == 1 { flag = true; break; } } } } } if flag { break; } } if flag { println!("Yes"); } else { assert_eq!(1, 2); println!("No"); } }