結果
| 問題 |
No.1469 programing
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-05-03 21:29:50 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 142 bytes |
| コンパイル時間 | 170 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 97,920 KB |
| 最終ジャッジ日時 | 2024-07-22 11:52:13 |
| 合計ジャッジ時間 | 7,214 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 TLE * 1 -- * 6 |
ソースコード
S = input()
ans = S[0]
for i in range(1,len(S)):
if S[i] == S[i-1]:
continue
else:
ans += S[i]
print(ans)