結果

問題 No.3264 岩井数
コンテスト
ユーザー elphe
提出日時 2025-11-20 22:51:48
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 12,575 ms
コンパイル使用メモリ 400,232 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-11-20 22:52:03
合計ジャッジ時間 14,150 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

use proconio::{fastout, input};

#[fastout]
fn main() {
    input! {
        n: u32,
    }

    println!("{}", n.to_string().repeat(5));
}
0