結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,704 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 46 ms
59,904 KB
testcase_06 AC 44 ms
58,240 KB
testcase_07 AC 47 ms
60,544 KB
testcase_08 AC 332 ms
84,608 KB
testcase_09 AC 516 ms
98,176 KB
testcase_10 AC 458 ms
93,312 KB
testcase_11 TLE -
testcase_12 AC 1,827 ms
259,376 KB
testcase_13 AC 40 ms
51,840 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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