結果

問題 No.1469 programing
ユーザー NoaSaberNoaSaber
提出日時 2021-04-09 22:04:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 119 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 272,780 KB
最終ジャッジ日時 2024-06-25 05:32:40
合計ジャッジ時間 6,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,600 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 47 ms
60,288 KB
testcase_06 AC 45 ms
57,856 KB
testcase_07 AC 47 ms
59,648 KB
testcase_08 AC 351 ms
84,608 KB
testcase_09 AC 618 ms
97,664 KB
testcase_10 AC 497 ms
92,928 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
tmp=""
ans=""
for i in N:
    if tmp==i:
        continue
    else:
        tmp=i
        ans+=tmp
print(ans)
0