結果
問題 | No.677 10^Nの約数 |
ユーザー | ゆきのしん |
提出日時 | 2018-04-28 00:22:23 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 667 bytes |
コンパイル時間 | 12,122 ms |
コンパイル使用メモリ | 402,528 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 23:05:37 |
合計ジャッジ時間 | 13,114 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
fn main() { let mut buf = String::new(); if let Err(_) = std::io::stdin().read_line(&mut buf) { println!("ha?"); return; } let n: usize = if let Ok(n) = buf.parse() { n } else { println!("1"); return; }; let mut twos = vec![1i64; n+1]; for i in 0..n { twos[i+1] = twos[i] * 2i64; } let mut fives = vec![1i64; n+1]; for i in 0..n { fives[i+1] = fives[i] * 5i64; } let mut ans = vec![]; for &t in twos.iter() { for &f in fives.iter() { ans.push(t * f); } } ans.sort(); for &a in ans.iter() { println!("{}", a); } }