結果

問題 No.1006 Share an Integer
ユーザー phsplsphspls
提出日時 2020-06-03 19:16:06
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 11,663 ms
コンパイル使用メモリ 378,724 KB
実行使用メモリ 48,768 KB
最終ジャッジ日時 2024-05-04 02:04:08
合計ジャッジ時間 14,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 79 ms
28,032 KB
testcase_12 AC 154 ms
46,288 KB
testcase_13 AC 168 ms
48,660 KB
testcase_14 AC 167 ms
48,720 KB
testcase_15 AC 137 ms
41,984 KB
testcase_16 AC 53 ms
21,632 KB
testcase_17 AC 81 ms
28,720 KB
testcase_18 AC 136 ms
42,368 KB
testcase_19 AC 134 ms
40,532 KB
testcase_20 AC 146 ms
43,520 KB
testcase_21 AC 166 ms
48,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    let mut d: Vec<usize> = vec![0; x+1];
    for i in 1..x {
        for j in 1..=x/i {
            d[i*j] += 1;
        }
    }
    let f: Vec<usize> = (0..=x).map(|i| i - d[i]).collect();
    let f: Vec<usize> = (0..=x).map(|i| max(f[i], f[x-i]) - min(f[i], f[x-i])).collect();
    let minval: usize = f.iter().map(|i| *i).min().unwrap();
    f.iter().enumerate().for_each(|pair| {
        let i = *pair.1;
        let j = pair.0;
        if i == minval {
            println!("{} {}", j, x-j);
        }
    });
}
0