結果
問題 |
No.2945 Namiki Secondary School
|
ユーザー |
|
提出日時 | 2024-11-12 14:22:16 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 214 bytes |
コンパイル時間 | 13,555 ms |
コンパイル使用メモリ | 378,344 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-12 14:22:31 |
合計ジャッジ時間 | 14,363 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
use proconio::input; fn main() { input! { n: usize } match n { 2008.. => println!("Namiki Secondary School"), 1984.. => println!("Namiki High School"), _ => println!("None") } }