結果

問題 No.1469 programing
ユーザー 👑 KazunKazun
提出日時 2022-02-15 01:42:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 817 ms / 3,000 ms
コード長 83 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 86,876 KB
実行使用メモリ 362,252 KB
最終ジャッジ日時 2023-09-11 16:51:44
合計ジャッジ時間 5,182 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,172 KB
testcase_01 AC 72 ms
71,296 KB
testcase_02 AC 73 ms
71,244 KB
testcase_03 AC 73 ms
71,096 KB
testcase_04 AC 76 ms
70,924 KB
testcase_05 AC 85 ms
76,424 KB
testcase_06 AC 78 ms
75,448 KB
testcase_07 AC 82 ms
76,088 KB
testcase_08 AC 103 ms
87,448 KB
testcase_09 AC 111 ms
92,140 KB
testcase_10 AC 108 ms
90,744 KB
testcase_11 AC 141 ms
102,908 KB
testcase_12 AC 125 ms
95,996 KB
testcase_13 AC 73 ms
71,100 KB
testcase_14 AC 157 ms
116,048 KB
testcase_15 AC 124 ms
96,164 KB
testcase_16 AC 152 ms
110,620 KB
testcase_17 AC 817 ms
362,252 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