結果
問題 | No.1469 programing |
ユーザー | pluto77 |
提出日時 | 2023-07-03 16:29:05 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 86 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 82,392 KB |
実行使用メモリ | 105,168 KB |
最終ジャッジ日時 | 2024-07-17 14:03:49 |
合計ジャッジ時間 | 6,984 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
59,136 KB |
testcase_01 | AC | 37 ms
52,672 KB |
testcase_02 | AC | 37 ms
52,224 KB |
testcase_03 | AC | 38 ms
52,704 KB |
testcase_04 | AC | 38 ms
53,908 KB |
testcase_05 | AC | 41 ms
60,344 KB |
testcase_06 | AC | 41 ms
58,904 KB |
testcase_07 | AC | 42 ms
61,220 KB |
testcase_08 | AC | 376 ms
84,780 KB |
testcase_09 | AC | 613 ms
98,120 KB |
testcase_10 | AC | 552 ms
93,404 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
s=input() res=s[0] for i in range(1,len(s)): if s[i-1]!=s[i]: res+=s[i] print(res)