結果
| 問題 | No.3195 Three-Letter Acronym |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-01-10 00:15:53 |
| 言語 | Rust (1.94.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 2,000 ms |
| + 824µs | |
| コード長 | 168 bytes |
| 記録 | |
| コンパイル時間 | 520 ms |
| コンパイル使用メモリ | 197,320 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-20 03:24:26 |
| 合計ジャッジ時間 | 2,189 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
use proconio::input;
fn main() {
input! {
s: [String; 3],
}
for x in s {
print!("{}", &x[..1].to_ascii_uppercase());
}
println!();
}