結果

問題 No.1469 programing
ユーザー pluto77pluto77
提出日時 2023-07-03 16:32:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 104 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 87,128 KB
実行使用メモリ 283,020 KB
最終ジャッジ日時 2023-09-24 13:15:37
合計ジャッジ時間 8,035 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,776 KB
testcase_01 AC 75 ms
71,412 KB
testcase_02 AC 74 ms
71,328 KB
testcase_03 AC 76 ms
71,428 KB
testcase_04 AC 76 ms
71,332 KB
testcase_05 AC 79 ms
75,900 KB
testcase_06 AC 75 ms
76,048 KB
testcase_07 AC 78 ms
76,004 KB
testcase_08 AC 296 ms
85,944 KB
testcase_09 AC 494 ms
99,228 KB
testcase_10 AC 415 ms
94,316 KB
testcase_11 TLE -
testcase_12 AC 1,756 ms
260,512 KB
testcase_13 AC 72 ms
71,508 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]:
  continue
 else:
  res+=s[i]
print(res)
0