結果
| 問題 | No.1445 新入生プログラミング鯖 |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2026-01-22 22:18:44 |
| 言語 | Rust (1.92.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 201 bytes |
| 記録 | |
| コンパイル時間 | 15,252 ms |
| コンパイル使用メモリ | 197,728 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-01-22 22:19:06 |
| 合計ジャッジ時間 | 14,172 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#![allow(non_snake_case)]
use proconio::input;
fn main() {
input! {
N: usize,
}
for _ in 0..N {
println!("Hello! You're new here, right? It's nice to meet you.");
}
}
norioc