結果
| 問題 | No.1469 programing |
| コンテスト | |
| ユーザー |
momoyuu
|
| 提出日時 | 2022-08-03 17:08:26 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 127 bytes |
| 記録 | |
| コンパイル時間 | 775 ms |
| コンパイル使用メモリ | 85,068 KB |
| 実行使用メモリ | 378,716 KB |
| 最終ジャッジ日時 | 2026-04-04 04:41:19 |
| 合計ジャッジ時間 | 16,525 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 TLE * 2 |
ソースコード
S = input()
s = ""
now = ""
for i in range(len(S)):
if now == S[i]:
continue
s += S[i]
now = S[i]
print(s)
momoyuu