結果
| 問題 | No.3195 Three-Letter Acronym |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-01-10 00:15:53 |
| 言語 | Rust (1.92.0 + proconio + num) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 168 bytes |
| 記録 | |
| コンパイル時間 | 25,299 ms |
| コンパイル使用メモリ | 411,728 KB |
| 実行使用メモリ | 7,852 KB |
| 最終ジャッジ日時 | 2026-01-10 00:17:04 |
| 合計ジャッジ時間 | 26,536 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
use proconio::input;
fn main() {
input! {
s: [String; 3],
}
for x in s {
print!("{}", &x[..1].to_ascii_uppercase());
}
println!();
}