結果

問題 No.1469 programing
ユーザー pluto77pluto77
提出日時 2021-04-23 16:06:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 96 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 10,624 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2023-09-17 11:05:47
合計ジャッジ時間 11,711 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,864 KB
testcase_01 AC 16 ms
7,860 KB
testcase_02 AC 16 ms
7,804 KB
testcase_03 AC 16 ms
7,816 KB
testcase_04 AC 16 ms
7,860 KB
testcase_05 AC 17 ms
7,756 KB
testcase_06 AC 16 ms
7,808 KB
testcase_07 AC 17 ms
7,856 KB
testcase_08 AC 128 ms
8,268 KB
testcase_09 AC 211 ms
8,248 KB
testcase_10 AC 174 ms
8,328 KB
testcase_11 AC 1,344 ms
8,728 KB
testcase_12 AC 696 ms
8,516 KB
testcase_13 AC 16 ms
7,812 KB
testcase_14 AC 2,078 ms
8,944 KB
testcase_15 AC 453 ms
8,652 KB
testcase_16 AC 1,114 ms
9,088 KB
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

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