結果
問題 | No.1006 Share an Integer |
ユーザー | uw_yu1rabbit |
提出日時 | 2021-03-14 01:57:24 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,130 bytes |
コンパイル時間 | 13,115 ms |
コンパイル使用メモリ | 378,372 KB |
実行使用メモリ | 17,440 KB |
最終ジャッジ日時 | 2024-10-15 14:44:19 |
合計ジャッジ時間 | 14,814 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 41 ms
10,604 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 111 ms
17,440 KB |
testcase_15 | AC | 93 ms
15,232 KB |
testcase_16 | AC | 32 ms
8,492 KB |
testcase_17 | AC | 49 ms
10,752 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 98 ms
15,752 KB |
testcase_21 | WA | - |
コンパイルメッセージ
warning: variable does not need to be mutable --> src/main.rs:16:9 | 16 | let mut x:usize = read(); | ----^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
ソースコード
#[allow(dead_code)] #[allow(unused_imports)] fn read<T: std::str::FromStr>() -> T { use std::io::*; let stdin = stdin(); let stdin = stdin.lock(); let token: String = stdin .bytes() .map(|c| c.expect("failed to read char") as char) .skip_while(|c| c.is_whitespace()) .take_while(|c| !c.is_whitespace()) .collect(); token.parse().ok().expect("failed to parse token") } fn main(){ let mut x:usize = read(); let mut f:Vec<_> = (0..=x).map(|i| i as i64).collect(); for i in 1..=x { f[i] -= 1; let mut mul = 2; while i * mul <= x { f[i * mul] -= 1; mul += 1; } } let mut res = Vec::new(); let mut ans = 1e18 as i64; for i in 1..=x/2 { ans = std::cmp::min(ans,(f[i] - f[x - i]).abs()); } for i in 1..=x/2 { if ans == (f[i] - f[x - i].abs()) { res.push((i,x - i)); if i != x - i { res.push((x - i,i)); } } } res.sort(); for i in 0..res.len() { println!("{} {}",res[i].0,res[i].1); } }