結果
問題 | No.163 cAPSlOCK |
ユーザー |
![]() |
提出日時 | 2025-01-06 23:06:54 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 181 bytes |
コンパイル時間 | 13,854 ms |
コンパイル使用メモリ | 404,968 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-01-06 23:07:10 |
合計ジャッジ時間 | 11,624 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
use proconio::{input, marker::Bytes};fn main() {input! {s: Bytes,}let t = s.iter().map(|e| (e ^ 32) as char).collect::<String>();println!("{}", t);}