結果
| 問題 |
No.1469 programing
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-05 17:58:31 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 303 ms / 3,000 ms |
| コード長 | 123 bytes |
| コンパイル時間 | 170 ms |
| コンパイル使用メモリ | 82,432 KB |
| 実行使用メモリ | 88,248 KB |
| 最終ジャッジ日時 | 2024-09-16 15:21:46 |
| 合計ジャッジ時間 | 2,411 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
S = input()
bef = ""
for s in S:
if bef == s:
bef = ""
else:
print(end = s)
bef = s
print()