結果
| 問題 |
No.1747 Many Formulae 2
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-11-19 22:32:25 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 1,590 bytes |
| コンパイル時間 | 10,226 ms |
| コンパイル使用メモリ | 401,680 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2025-01-01 19:24:59 |
| 合計ジャッジ時間 | 11,114 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 |
ソースコード
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
($($r:tt)*) => {
let stdin = std::io::stdin();
let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
let mut next = move || -> String{
bytes.by_ref().map(|r|r.unwrap() as char)
.skip_while(|c|c.is_whitespace())
.take_while(|c|!c.is_whitespace())
.collect()
};
input_inner!{next, $($r)*}
};
}
macro_rules! input_inner {
($next:expr) => {};
($next:expr,) => {};
($next:expr, $var:ident : $t:tt $($r:tt)*) => {
let $var = read_value!($next, $t);
input_inner!{$next $($r)*}
};
}
macro_rules! read_value {
($next:expr, chars) => {
read_value!($next, String).chars().collect::<Vec<char>>()
};
($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}
fn is_prime(x: i64) -> bool {
if x <= 1 {
return false;
}
let mut d = 2;
while d * d <= x {
if x % d == 0 {
return false;
}
d += 1;
}
true
}
fn main() {
input!(s: chars);
let n = s.len();
let mut ans = 0;
for bits in 0..1 << (n - 1) {
let mut x = 0;
let mut c = (s[0] as u8 - b'0') as i64;
for i in 1..n {
if (bits & 1 << (i - 1)) != 0 {
x += c;
c = 0;
}
c = 10 * c + (s[i] as u8 - b'0') as i64;
}
x += c;
if is_prime(x) { ans += 1; }
}
println!("{}", ans);
}