結果

問題 No.1469 programing
ユーザー 👑 KazunKazun
提出日時 2022-02-15 01:43:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,371 ms / 3,000 ms
コード長 83 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 10,528 KB
実行使用メモリ 98,156 KB
最終ジャッジ日時 2023-09-11 16:52:37
合計ジャッジ時間 3,726 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,764 KB
testcase_01 AC 15 ms
7,804 KB
testcase_02 AC 16 ms
7,804 KB
testcase_03 AC 15 ms
7,912 KB
testcase_04 AC 16 ms
7,828 KB
testcase_05 AC 16 ms
7,804 KB
testcase_06 AC 16 ms
7,772 KB
testcase_07 AC 16 ms
7,760 KB
testcase_08 AC 52 ms
10,316 KB
testcase_09 AC 64 ms
11,212 KB
testcase_10 AC 60 ms
11,012 KB
testcase_11 AC 117 ms
15,424 KB
testcase_12 AC 90 ms
13,332 KB
testcase_13 AC 15 ms
7,844 KB
testcase_14 AC 148 ms
17,720 KB
testcase_15 AC 99 ms
12,988 KB
testcase_16 AC 155 ms
16,752 KB
testcase_17 AC 1,371 ms
98,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
T=[S[i] for i in range(len(S)) if i==0 or S[i-1]!=S[i]]
print(*T,sep="")
0