結果
| 問題 | No.3195 Three-Letter Acronym |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-03-11 21:27:26 |
| 言語 | Rust (1.94.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 2,000 ms |
| + 733µs | |
| コード長 | 266 bytes |
| 記録 | |
| コンパイル時間 | 628 ms |
| コンパイル使用メモリ | 184,548 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-29 20:38:25 |
| 合計ジャッジ時間 | 2,449 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
use proconio::input;
fn main() {
input! {
a: String,
b: String,
c: String,
}
let ans: String = [a, b, c].into_iter()
.flat_map(|str| {
str.chars().nth(0).unwrap().to_uppercase()
})
.collect();
println!("{ans}");
}