結果

問題 No.1469 programing
ユーザー 👑 KazunKazun
提出日時 2022-02-15 01:42:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 787 ms / 3,000 ms
コード長 83 bytes
コンパイル時間 570 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 362,696 KB
最終ジャッジ日時 2023-09-11 16:52:33
合計ジャッジ時間 4,128 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,536 KB
testcase_01 AC 69 ms
71,216 KB
testcase_02 AC 69 ms
71,180 KB
testcase_03 AC 70 ms
71,192 KB
testcase_04 AC 72 ms
71,352 KB
testcase_05 AC 81 ms
76,448 KB
testcase_06 AC 77 ms
75,760 KB
testcase_07 AC 80 ms
76,732 KB
testcase_08 AC 100 ms
87,688 KB
testcase_09 AC 107 ms
92,080 KB
testcase_10 AC 105 ms
90,800 KB
testcase_11 AC 140 ms
103,100 KB
testcase_12 AC 123 ms
96,160 KB
testcase_13 AC 71 ms
71,196 KB
testcase_14 AC 159 ms
116,392 KB
testcase_15 AC 125 ms
96,320 KB
testcase_16 AC 151 ms
111,424 KB
testcase_17 AC 787 ms
362,696 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