結果

問題 No.1469 programing
ユーザー pajannatpajannat
提出日時 2021-04-09 21:36:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 148 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 270,536 KB
最終ジャッジ日時 2024-06-25 04:31:34
合計ジャッジ時間 12,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,200 KB
testcase_01 AC 36 ms
52,824 KB
testcase_02 AC 36 ms
51,952 KB
testcase_03 AC 36 ms
52,316 KB
testcase_04 AC 37 ms
53,204 KB
testcase_05 AC 42 ms
61,476 KB
testcase_06 AC 42 ms
59,280 KB
testcase_07 AC 41 ms
61,720 KB
testcase_08 AC 327 ms
84,808 KB
testcase_09 AC 531 ms
97,828 KB
testcase_10 AC 430 ms
93,120 KB
testcase_11 TLE -
testcase_12 AC 1,719 ms
259,696 KB
testcase_13 AC 38 ms
52,216 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

Ans = ""

cnt = 0
for i in S:
    if cnt == 0:
        Ans += i
    else:
	    if i != S[cnt-1]:
	    	Ans += i
    cnt += 1
print(Ans)
0