結果
| 問題 | No.3447 Power Projection(constant) |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2026-05-20 09:00:46 |
| 言語 | Rust (1.94.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 494 bytes |
| 記録 | |
| コンパイル時間 | 1,102 ms |
| コンパイル使用メモリ | 189,148 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-20 09:00:49 |
| 合計ジャッジ時間 | 2,813 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
| 純コード判定待ち |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
#![allow(non_snake_case, unused_imports)]
use proconio::{input, marker::Usize1, marker::Chars};
use itertools::Itertools;
#[allow(unused_macros)]
macro_rules! d {
( $( $x:expr ),* $(,)? ) => {
eprintln!(
concat!( $( stringify!($x), "={:?} " ),* ),
$( $x ),*
);
};
}
fn main() {
input! {
N: usize,
A: usize,
B: usize,
}
for i in 0..N {
let x = A * B.pow(i as u32);
println!("{}", x);
}
}
norioc