結果

問題 No.1469 programing
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-26 19:04:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 121 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 10,596 KB
実行使用メモリ 9,052 KB
最終ジャッジ日時 2023-08-25 01:11:06
合計ジャッジ時間 13,714 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,988 KB
testcase_01 AC 14 ms
7,956 KB
testcase_02 AC 15 ms
7,996 KB
testcase_03 AC 15 ms
7,860 KB
testcase_04 AC 15 ms
7,804 KB
testcase_05 AC 16 ms
7,996 KB
testcase_06 AC 15 ms
7,968 KB
testcase_07 AC 16 ms
7,808 KB
testcase_08 AC 129 ms
8,268 KB
testcase_09 AC 202 ms
8,380 KB
testcase_10 AC 170 ms
8,408 KB
testcase_11 AC 1,281 ms
8,880 KB
testcase_12 AC 679 ms
8,488 KB
testcase_13 AC 14 ms
7,804 KB
testcase_14 AC 1,994 ms
8,868 KB
testcase_15 AC 444 ms
8,596 KB
testcase_16 AC 1,095 ms
9,052 KB
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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