結果

問題 No.1006 Share an Integer
ユーザー phsplsphspls
提出日時 2020-07-08 23:18:30
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 10,854 ms
コンパイル使用メモリ 402,376 KB
実行使用メモリ 17,528 KB
最終ジャッジ日時 2024-10-05 01:56:48
合計ジャッジ時間 12,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 52 ms
10,636 KB
testcase_12 AC 105 ms
16,600 KB
testcase_13 AC 111 ms
17,528 KB
testcase_14 AC 108 ms
17,484 KB
testcase_15 AC 96 ms
15,272 KB
testcase_16 AC 35 ms
8,436 KB
testcase_17 AC 56 ms
10,816 KB
testcase_18 AC 95 ms
15,288 KB
testcase_19 AC 95 ms
14,752 KB
testcase_20 AC 97 ms
15,716 KB
testcase_21 AC 109 ms
17,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::{min, max};

fn calc(i: usize, x: usize, d: &Vec<usize>) -> usize {
    let a = i - d[i];
    let b = x - i - d[x-i];
    max(a, b) - min(a, b)
}

fn main() {
    let mut x = String::new();
    std::io::stdin().read_line(&mut x).ok();
    let x: usize = x.trim().parse().unwrap();

    let mut divs: Vec<usize> = vec![2; x+1];
    divs[0] = 0;
    divs[1] = 1;
    for i in 2..=x/2 {
        for j in 2..=x/i {
            divs[i*j] += 1;
        }
    }
    let mut minval: usize = x;
    for i in 1..=x/2 {
        minval = min(minval, calc(i, x, &divs));
    }
    (1..x)
        .map(|i| calc(i, x, &divs))
        .enumerate()
        .filter(|pair| pair.1 == minval)
        .for_each(|pair| { println!("{} {}", pair.0 + 1, x - pair.0 - 1); })
    ;
}
0