結果
| 問題 | No.3447 Power Projection(constant) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-02-27 00:51:44 |
| 言語 | Rust (1.94.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 2,000 ms |
| + 797µs | |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 652 ms |
| コンパイル使用メモリ | 184,160 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-25 04:20:11 |
| 合計ジャッジ時間 | 2,262 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
use proconio::input;
fn main() {
input! {
n: u32,
a: u32,
b: u32
}
(0..n).for_each(|x| println!("{}", a * b.pow(x)));
}