結果

問題 No.1841 Long Long
ユーザー ixTL255
提出日時 2023-03-01 23:20:51
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 12,687 ms
コンパイル使用メモリ 379,916 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 20:28:43
合計ジャッジ時間 13,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    println!("{}",
        "Long".to_string().repeat(n)
    );
}
0