結果

問題 No.677 10^Nの約数
ユーザー nekoziroonekoziroo
提出日時 2018-05-26 19:13:34
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 668 bytes
コンパイル時間 13,401 ms
コンパイル使用メモリ 379,152 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-28 18:16:07
合計ジャッジ時間 17,269 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 0 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 1 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 3 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 20 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 186 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 1,862 ms
6,944 KB
testcase_17 TLE -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::i64;
use std::io::stdin;

fn get_line() -> String {
    let mut line = String::new();
    stdin().read_line(&mut line).ok();
    line
}

fn main() {
    let line = get_line();
    let n: u32 = line.trim().parse().unwrap();
    let ten: i64 = 10;
    let p: i64 = ten.pow(n);
    let mut s: i64 = 1;

    let mut result = Vec::new();
    loop {
        if s >= p / s {
            result.push(s);
            break;
        }
        if p % s == 0 {
            result.push(s);
            result.push(p / s);
            s += 1;
        } else {
            s += 1;
        }
    }

    result.sort();

    for i in result {
        println!("{}", i)
    }
}
0