結果
| 問題 | No.3195 Three-Letter Acronym |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-01-10 00:09:21 |
| 言語 | Rust (1.92.0 + proconio + num) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 206 bytes |
| 記録 | |
| コンパイル時間 | 24,571 ms |
| コンパイル使用メモリ | 416,356 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-01-10 00:09:49 |
| 合計ジャッジ時間 | 26,351 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
use proconio::input;
fn main() {
input! {
s: [String; 3],
}
for x in &s {
let c = x.chars().nth(0).unwrap().to_ascii_uppercase();
print!("{}", c);
}
println!();
}