結果

問題 No.1469 programing
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-02 11:40:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 102 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 318,384 KB
最終ジャッジ日時 2024-11-29 17:34:06
合計ジャッジ時間 22,754 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,380 KB
testcase_01 AC 38 ms
59,348 KB
testcase_02 AC 37 ms
59,092 KB
testcase_03 AC 38 ms
318,384 KB
testcase_04 AC 39 ms
60,180 KB
testcase_05 AC 43 ms
60,256 KB
testcase_06 AC 43 ms
59,944 KB
testcase_07 AC 44 ms
62,248 KB
testcase_08 AC 318 ms
84,648 KB
testcase_09 AC 473 ms
98,052 KB
testcase_10 AC 421 ms
93,160 KB
testcase_11 TLE -
testcase_12 AC 1,774 ms
260,224 KB
testcase_13 AC 38 ms
53,220 KB
testcase_14 TLE -
testcase_15 AC 1,389 ms
258,848 KB
testcase_16 TLE -
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
ans = S[0]
for i in range(1,len(S)):
    if S[i-1] != S[i]:
        ans += S[i]
print(ans)
0