結果

問題 No.1469 programing
ユーザー H20H20
提出日時 2021-04-09 21:25:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,050 ms / 3,000 ms
コード長 132 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 429,932 KB
最終ジャッジ日時 2024-06-25 04:03:12
合計ジャッジ時間 3,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 47 ms
59,008 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 45 ms
59,008 KB
testcase_08 AC 65 ms
74,112 KB
testcase_09 AC 72 ms
80,000 KB
testcase_10 AC 70 ms
77,952 KB
testcase_11 AC 101 ms
95,232 KB
testcase_12 AC 91 ms
93,568 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 119 ms
106,108 KB
testcase_15 AC 102 ms
96,240 KB
testcase_16 AC 132 ms
112,892 KB
testcase_17 AC 1,050 ms
429,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
L = list(input())
GB = itertools.groupby(L)
ANS = []
for k,v in GB:
    ANS.append(k)
print(''.join(map(str, ANS)))
0