結果
| 問題 | No.784 「,(カンマ)」 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-02-08 15:42:36 |
| 言語 | Rust (1.92.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 686 bytes |
| 記録 | |
| コンパイル時間 | 1,564 ms |
| コンパイル使用メモリ | 200,212 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-02-08 15:42:40 |
| 合計ジャッジ時間 | 3,049 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
fn main() {
let stdin = std::io::read_to_string(std::io::stdin()).unwrap();
let mut stdin = stdin.split_ascii_whitespace();
let n: String = stdin.next().unwrap().parse().unwrap();
use std::io::Write;
let mut out = std::io::BufWriter::new(std::io::stdout().lock());
out.write_all(output(solve(n)).as_bytes()).unwrap();
}
fn solve(n: String) -> String {
let mut n = n.into_bytes();
n.reverse();
let mut n = n
.chunks(3)
.map(|n| n.into_iter().map(|n| *n).collect::<Vec<_>>())
.collect::<Vec<_>>()
.join(&b',');
n.reverse();
String::from_utf8(n).unwrap()
}
fn output(ans: String) -> String {
ans + "\n"
}