結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 53 ms
61,696 KB
testcase_06 AC 47 ms
58,752 KB
testcase_07 AC 52 ms
62,080 KB
testcase_08 AC 83 ms
86,784 KB
testcase_09 AC 89 ms
91,008 KB
testcase_10 AC 87 ms
89,088 KB
testcase_11 AC 124 ms
100,984 KB
testcase_12 AC 104 ms
97,280 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 140 ms
113,880 KB
testcase_15 AC 103 ms
93,808 KB
testcase_16 AC 132 ms
109,228 KB
testcase_17 AC 953 ms
361,560 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