結果

問題 No.1469 programing
ユーザー pluto77pluto77
提出日時 2023-07-03 16:29:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 86 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 87,188 KB
実行使用メモリ 271,312 KB
最終ジャッジ日時 2023-09-24 13:11:46
合計ジャッジ時間 9,255 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,404 KB
testcase_01 AC 72 ms
71,272 KB
testcase_02 AC 70 ms
71,248 KB
testcase_03 AC 70 ms
71,272 KB
testcase_04 AC 72 ms
71,224 KB
testcase_05 AC 75 ms
75,760 KB
testcase_06 AC 76 ms
75,952 KB
testcase_07 AC 76 ms
75,904 KB
testcase_08 AC 299 ms
85,784 KB
testcase_09 AC 481 ms
99,048 KB
testcase_10 AC 415 ms
94,232 KB
testcase_11 TLE -
testcase_12 AC 1,722 ms
260,456 KB
testcase_13 AC 70 ms
71,400 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
res=s[0]
for i in range(1,len(s)):
 if s[i-1]!=s[i]:
  res+=s[i]
print(res)
0