結果

問題 No.1469 programing
ユーザー pajannatpajannat
提出日時 2021-04-09 21:45:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 123 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,692 KB
最終ジャッジ日時 2024-06-25 04:52:31
合計ジャッジ時間 11,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,000 KB
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,368 KB
testcase_05 AC 31 ms
10,368 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 150 ms
11,008 KB
testcase_09 AC 228 ms
11,008 KB
testcase_10 AC 198 ms
10,880 KB
testcase_11 AC 1,345 ms
11,440 KB
testcase_12 AC 694 ms
11,008 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 1,989 ms
11,712 KB
testcase_15 AC 472 ms
11,280 KB
testcase_16 AC 1,145 ms
11,604 KB
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

Ans = ""
Ans += S[0]

for i in range(1,len(S)):
    if S[i] != S[i-1]:
        Ans += S[i]
        
print(Ans)
0