結果
| 問題 | No.2049 POP |
| コンテスト | |
| ユーザー |
ixTL255
|
| 提出日時 | 2022-12-28 00:07:40 |
| 言語 | Rust (1.94.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 2,000 ms |
| + 899µs | |
| コード長 | 277 bytes |
| 記録 | |
| コンパイル時間 | 413 ms |
| コンパイル使用メモリ | 192,628 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-20 09:56:48 |
| 合計ジャッジ時間 | 2,222 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 |
ソースコード
use std::io;
fn main() {
let mut n: String = String::new();
let mut s: String = String::new();
io::stdin().read_line(&mut n).ok();
io::stdin().read_line(&mut s).ok();
let mut s = s.lines().collect::<String>();
s.remove(s.len() -1);
s.remove(0);
println!("{}", s);
}
ixTL255