結果

問題 No.1469 programing
ユーザー pluto77pluto77
提出日時 2023-07-03 16:19:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 96 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 284,904 KB
最終ジャッジ日時 2024-07-17 13:53:42
合計ジャッジ時間 7,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,344 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 40 ms
60,416 KB
testcase_06 AC 40 ms
58,624 KB
testcase_07 AC 43 ms
60,672 KB
testcase_08 AC 318 ms
85,028 KB
testcase_09 AC 492 ms
98,048 KB
testcase_10 AC 411 ms
92,928 KB
testcase_11 TLE -
testcase_12 AC 1,778 ms
260,236 KB
testcase_13 AC 36 ms
53,372 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