結果
| 問題 | No.1469 programing |
| コンテスト | |
| ユーザー |
lie_of_lillie
|
| 提出日時 | 2021-05-12 19:31:30 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 118 bytes |
| 記録 | |
| コンパイル時間 | 235 ms |
| コンパイル使用メモリ | 96,200 KB |
| 実行使用メモリ | 329,216 KB |
| 最終ジャッジ日時 | 2026-09-03 00:10:12 |
| 合計ジャッジ時間 | 18,106 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 TLE * 2 |
ソースコード
s=input()
t=''
tmp=''
for ch in s:
if ch == tmp:
continue
else:
t+=ch
tmp=ch
print(t)
lie_of_lillie