結果

問題 No.1469 programing
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-05-15 13:34:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 3,000 ms
コード長 147 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,160 KB
最終ジャッジ日時 2024-10-03 01:19:07
合計ジャッジ時間 2,653 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,772 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 43 ms
52,608 KB
testcase_05 AC 53 ms
61,184 KB
testcase_06 AC 49 ms
60,928 KB
testcase_07 AC 55 ms
63,232 KB
testcase_08 AC 65 ms
76,544 KB
testcase_09 AC 67 ms
77,220 KB
testcase_10 AC 69 ms
77,056 KB
testcase_11 AC 73 ms
78,336 KB
testcase_12 AC 70 ms
77,864 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 80 ms
79,616 KB
testcase_15 AC 68 ms
78,148 KB
testcase_16 AC 83 ms
78,936 KB
testcase_17 AC 327 ms
100,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)
c = S[0]
print(c, flush=False, end='')
for s in S[1:]:
	if s == c:
		continue
	c = s
	print(c, flush=False, end='')
print()
0