結果

問題 No.1469 programing
ユーザー gorugo30gorugo30
提出日時 2021-05-08 16:29:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 3,000 ms
コード長 138 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 93,568 KB
最終ジャッジ日時 2024-09-16 21:29:53
合計ジャッジ時間 2,546 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,560 KB
testcase_01 AC 31 ms
53,484 KB
testcase_02 AC 34 ms
52,484 KB
testcase_03 AC 30 ms
52,524 KB
testcase_04 AC 35 ms
53,228 KB
testcase_05 AC 39 ms
62,548 KB
testcase_06 AC 38 ms
60,932 KB
testcase_07 AC 42 ms
64,284 KB
testcase_08 AC 56 ms
76,672 KB
testcase_09 AC 53 ms
77,308 KB
testcase_10 AC 54 ms
77,284 KB
testcase_11 AC 59 ms
78,860 KB
testcase_12 AC 63 ms
78,032 KB
testcase_13 AC 35 ms
52,392 KB
testcase_14 AC 70 ms
79,540 KB
testcase_15 AC 60 ms
77,952 KB
testcase_16 AC 71 ms
78,992 KB
testcase_17 AC 242 ms
93,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
print(S[0], end = "")
for i in range(1, len(S)):
    if S[i] == S[i - 1]:
        continue
    print(S[i], end = "")
print("")
0