結果

問題 No.1469 programing
ユーザー pluto77pluto77
提出日時 2023-07-03 16:19:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 96 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 87,160 KB
実行使用メモリ 271,452 KB
最終ジャッジ日時 2023-09-24 13:01:51
合計ジャッジ時間 9,952 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,188 KB
testcase_01 AC 71 ms
71,380 KB
testcase_02 AC 74 ms
71,212 KB
testcase_03 AC 75 ms
71,304 KB
testcase_04 AC 77 ms
71,044 KB
testcase_05 AC 80 ms
75,928 KB
testcase_06 AC 77 ms
75,864 KB
testcase_07 AC 78 ms
76,048 KB
testcase_08 AC 339 ms
85,948 KB
testcase_09 AC 527 ms
99,208 KB
testcase_10 AC 448 ms
94,116 KB
testcase_11 TLE -
testcase_12 AC 1,778 ms
260,980 KB
testcase_13 AC 73 ms
71,216 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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