結果

問題 No.1469 programing
ユーザー raven7959raven7959
提出日時 2021-08-13 15:45:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 3,000 ms
コード長 119 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 312,600 KB
最終ジャッジ日時 2024-10-03 06:04:47
合計ジャッジ時間 2,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,724 KB
testcase_01 AC 31 ms
53,096 KB
testcase_02 AC 32 ms
51,832 KB
testcase_03 AC 32 ms
52,596 KB
testcase_04 AC 32 ms
52,736 KB
testcase_05 AC 35 ms
59,388 KB
testcase_06 AC 36 ms
58,276 KB
testcase_07 AC 40 ms
60,164 KB
testcase_08 AC 46 ms
70,824 KB
testcase_09 AC 52 ms
75,140 KB
testcase_10 AC 46 ms
73,140 KB
testcase_11 AC 68 ms
97,960 KB
testcase_12 AC 55 ms
82,160 KB
testcase_13 AC 36 ms
52,200 KB
testcase_14 AC 81 ms
97,952 KB
testcase_15 AC 62 ms
89,448 KB
testcase_16 AC 72 ms
90,584 KB
testcase_17 AC 382 ms
312,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
L=[]
L.append(S[0])
for i in range(len(S)-1):
    if S[i+1]!=S[i]:
        L.append(S[i+1])
print("".join(L))
0