結果
| 問題 | No.1445 新入生プログラミング鯖 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-01-15 14:06:19 |
| 言語 | Rust (1.92.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 314 bytes |
| 記録 | |
| コンパイル時間 | 27,872 ms |
| コンパイル使用メモリ | 416,796 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-01-15 14:06:49 |
| 合計ジャッジ時間 | 28,021 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
use proconio::{fastout, input};
#[fastout]
fn main() {
input! {
n: usize,
}
println!("{}", output(solve(n)))
}
fn solve(n: usize) -> String {
["Hello! You're new here, right? It's nice to meet you."]
.repeat(n)
.join("\n")
}
fn output(ans: String) -> String {
ans
}