結果
| 問題 | No.1469 programing |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-05 17:58:31 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 185 ms / 3,000 ms |
| コード長 | 123 bytes |
| 記録 | |
| コンパイル時間 | 153 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 92,124 KB |
| 最終ジャッジ日時 | 2026-04-05 20:11:06 |
| 合計ジャッジ時間 | 2,373 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
S = input()
bef = ""
for s in S:
if bef == s:
bef = ""
else:
print(end = s)
bef = s
print()