結果

問題 No.1469 programing
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-12 02:25:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 3,000 ms
コード長 140 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 93,700 KB
最終ジャッジ日時 2024-11-14 13:41:24
合計ジャッジ時間 3,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,964 KB
testcase_01 AC 37 ms
52,880 KB
testcase_02 AC 37 ms
53,632 KB
testcase_03 AC 37 ms
52,544 KB
testcase_04 AC 41 ms
53,468 KB
testcase_05 AC 47 ms
61,876 KB
testcase_06 AC 46 ms
62,620 KB
testcase_07 AC 51 ms
62,996 KB
testcase_08 AC 64 ms
77,008 KB
testcase_09 AC 64 ms
77,460 KB
testcase_10 AC 63 ms
77,320 KB
testcase_11 AC 70 ms
78,520 KB
testcase_12 AC 65 ms
78,056 KB
testcase_13 AC 36 ms
51,980 KB
testcase_14 AC 75 ms
79,212 KB
testcase_15 AC 67 ms
78,044 KB
testcase_16 AC 76 ms
78,728 KB
testcase_17 AC 278 ms
93,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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