結果
問題 | No.1469 programing |
ユーザー | harurun |
提出日時 | 2021-04-03 17:44:52 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 369 bytes |
コンパイル時間 | 14,244 ms |
コンパイル使用メモリ | 379,884 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-07 04:44:16 |
合計ジャッジ時間 | 23,482 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1,455 ms
5,376 KB |
testcase_09 | AC | 2,515 ms
5,376 KB |
testcase_10 | AC | 2,095 ms
5,376 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
fn main(){ let s = { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); s.trim_end().to_owned() }; let length =s.chars().count(); print!("{}",s.chars().nth(0).unwrap()); for i in 1..length{ if s.chars().nth(i-1).unwrap()!=s.chars().nth(i).unwrap(){ print!("{}",s.chars().nth(i).unwrap()); } } print!("\n"); }