結果
問題 | No.9006 マルチバイト文字テスト(テスト用) |
ユーザー | 🇳🇱🦭🇯🇵 |
提出日時 | 2024-09-04 09:09:01 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 358 bytes |
コンパイル時間 | 12,908 ms |
コンパイル使用メモリ | 403,660 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-04 09:09:15 |
合計ジャッジ時間 | 13,583 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,944 KB |
ソースコード
use std::io; use std::io::prelude::*; fn main() { let stdin = io::read_to_string(io::stdin()).unwrap(); let mut stdin = stdin.split_whitespace(); let stdout = io::stdout(); let mut stdout = io::BufWriter::new(stdout.lock()); let s: String = stdin.next().unwrap().chars().rev().collect(); writeln!(stdout, "{}", s).unwrap_or(()); }