結果

問題 No.1469 programing
ユーザー mahiro72mahiro72
提出日時 2021-10-09 20:13:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 102 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 10,540 KB
実行使用メモリ 13,104 KB
最終ジャッジ日時 2023-10-11 09:54:25
合計ジャッジ時間 12,608 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,052 KB
testcase_01 AC 16 ms
7,988 KB
testcase_02 AC 16 ms
8,056 KB
testcase_03 AC 16 ms
8,052 KB
testcase_04 AC 17 ms
8,020 KB
testcase_05 AC 17 ms
8,064 KB
testcase_06 AC 17 ms
8,040 KB
testcase_07 AC 17 ms
8,032 KB
testcase_08 AC 123 ms
8,932 KB
testcase_09 AC 204 ms
9,360 KB
testcase_10 AC 165 ms
9,100 KB
testcase_11 AC 1,380 ms
10,360 KB
testcase_12 AC 702 ms
9,612 KB
testcase_13 AC 16 ms
8,000 KB
testcase_14 AC 2,103 ms
10,976 KB
testcase_15 AC 411 ms
10,684 KB
testcase_16 AC 1,059 ms
13,104 KB
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby
S = [x for x in input()]
ans=''
for i,_ in groupby(S):ans+=i
print(ans)
0