結果
| 問題 | No.1469 programing |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-11 01:02:57 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 120 bytes |
| 記録 | |
| コンパイル時間 | 139 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 365,440 KB |
| 最終ジャッジ日時 | 2026-03-13 18:37:18 |
| 合計ジャッジ時間 | 17,368 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 TLE * 2 |
ソースコード
S = str(input())
ans = S[0]
for i in range(1,len(S)):
if S[i] == S[i-1]:
continue
ans += S[i]
print(ans)