結果
| 問題 |
No.591 (^o^)/
|
| コンテスト | |
| ユーザー |
cra77756176
|
| 提出日時 | 2022-12-03 19:35:07 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 221 bytes |
| コンパイル時間 | 14,216 ms |
| コンパイル使用メモリ | 378,336 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-10 22:42:03 |
| 合計ジャッジ時間 | 13,671 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
use std::io::{self, Read};
fn main() {
let mut tt = String::new();
io::stdin().read_to_string(&mut tt).ok();
let tt = tt.split_whitespace().collect::<Vec<_>>();
println!("({0}{1}{0})/", tt[0], tt[1]);
}
cra77756176