結果

問題 No.18 うーさー暗号
ユーザー cra77756176cra77756176
提出日時 2022-11-17 02:18:09
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 458 bytes
コンパイル時間 14,003 ms
コンパイル使用メモリ 394,972 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-17 20:20:11
合計ジャッジ時間 15,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::{self, BufRead};

const A: isize = 'A' as isize;

fn main() {
    io::stdin().lock().lines().for_each(|l| {
        let answer = l
            .unwrap()
            .chars()
            .enumerate()
            .map(|(i, c)| {
                char::from_u32((A + (c as isize - A - (i + 1) as isize).rem_euclid(26)) as u32)
                    .unwrap()
            })
            .collect::<String>();

        println!("{}", answer);
    });
}
0