結果

問題 No.1469 programing
ユーザー netyo715netyo715
提出日時 2021-04-09 22:00:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,304 ms / 3,000 ms
コード長 106 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 10,544 KB
実行使用メモリ 90,940 KB
最終ジャッジ日時 2023-09-07 11:15:28
合計ジャッジ時間 3,561 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,968 KB
testcase_01 AC 15 ms
7,936 KB
testcase_02 AC 15 ms
7,772 KB
testcase_03 AC 15 ms
7,768 KB
testcase_04 AC 15 ms
7,812 KB
testcase_05 AC 17 ms
7,952 KB
testcase_06 AC 16 ms
7,820 KB
testcase_07 AC 17 ms
8,004 KB
testcase_08 AC 51 ms
10,272 KB
testcase_09 AC 63 ms
10,964 KB
testcase_10 AC 58 ms
10,948 KB
testcase_11 AC 113 ms
15,200 KB
testcase_12 AC 85 ms
13,076 KB
testcase_13 AC 15 ms
7,876 KB
testcase_14 AC 145 ms
17,648 KB
testcase_15 AC 95 ms
13,096 KB
testcase_16 AC 147 ms
16,316 KB
testcase_17 AC 1,304 ms
90,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
anss = ["."]
for s in S:
    if anss[-1] != s:
        anss.append(s)
print(*anss[1:], sep="")
0