結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
30,808 KB
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 30 ms
10,368 KB
testcase_05 AC 32 ms
10,496 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 147 ms
10,752 KB
testcase_09 AC 229 ms
10,880 KB
testcase_10 AC 195 ms
10,880 KB
testcase_11 AC 1,363 ms
11,328 KB
testcase_12 AC 701 ms
11,136 KB
testcase_13 AC 29 ms
10,368 KB
testcase_14 AC 2,008 ms
11,620 KB
testcase_15 AC 475 ms
11,172 KB
testcase_16 AC 1,143 ms
11,624 KB
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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