結果
| 問題 |
No.1469 programing
|
| コンテスト | |
| ユーザー |
momoyuu
|
| 提出日時 | 2022-08-03 17:08:26 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 127 bytes |
| コンパイル時間 | 382 ms |
| コンパイル使用メモリ | 82,124 KB |
| 実行使用メモリ | 270,560 KB |
| 最終ジャッジ日時 | 2024-09-13 10:21:00 |
| 合計ジャッジ時間 | 12,791 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 TLE * 2 -- * 3 |
ソースコード
S = input()
s = ""
now = ""
for i in range(len(S)):
if now == S[i]:
continue
s += S[i]
now = S[i]
print(s)
momoyuu