結果

問題 No.1469 programing
ユーザー KazunKazun
提出日時 2022-02-15 01:42:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 926 ms / 3,000 ms
コード長 83 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 361,952 KB
最終ジャッジ日時 2024-06-29 06:58:18
合計ジャッジ時間 4,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 43 ms
52,480 KB
testcase_05 AC 54 ms
61,568 KB
testcase_06 AC 49 ms
58,368 KB
testcase_07 AC 54 ms
61,824 KB
testcase_08 AC 83 ms
86,784 KB
testcase_09 AC 90 ms
90,624 KB
testcase_10 AC 89 ms
89,088 KB
testcase_11 AC 123 ms
100,716 KB
testcase_12 AC 105 ms
96,896 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 AC 142 ms
113,876 KB
testcase_15 AC 105 ms
94,440 KB
testcase_16 AC 135 ms
109,360 KB
testcase_17 AC 926 ms
361,952 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