結果

問題 No.1469 programing
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-05-15 13:29:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 302 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 277,632 KB
最終ジャッジ日時 2024-10-03 01:13:47
合計ジャッジ時間 7,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,056 KB
testcase_01 AC 49 ms
55,552 KB
testcase_02 AC 49 ms
54,912 KB
testcase_03 AC 49 ms
55,040 KB
testcase_04 AC 50 ms
55,424 KB
testcase_05 AC 54 ms
64,000 KB
testcase_06 AC 53 ms
61,312 KB
testcase_07 AC 56 ms
64,256 KB
testcase_08 AC 360 ms
85,120 KB
testcase_09 AC 588 ms
98,304 KB
testcase_10 AC 549 ms
93,784 KB
testcase_11 TLE -
testcase_12 AC 1,900 ms
259,584 KB
testcase_13 AC 48 ms
55,040 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from math import sin, cos, tan
from functools import reduce
from collections import deque
import heapq
sys.setrecursionlimit(1000000)
intm1 = lambda x:int(x)-1

S = input()
N = len(S)
T = S[0]
i = 1
while i < N:
	if S[i] == T[-1]:
		i += 1
		continue
	T += S[i]
	i += 1
print(T)
0