結果

問題 No.1469 programing
ユーザー KazunKazun
提出日時 2022-02-15 01:43:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,797 ms / 3,000 ms
コード長 83 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 100,612 KB
最終ジャッジ日時 2024-06-29 06:59:23
合計ジャッジ時間 4,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 26 ms
10,368 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 74 ms
13,056 KB
testcase_09 AC 85 ms
13,656 KB
testcase_10 AC 83 ms
13,568 KB
testcase_11 AC 162 ms
18,304 KB
testcase_12 AC 128 ms
15,848 KB
testcase_13 AC 25 ms
10,240 KB
testcase_14 AC 196 ms
20,372 KB
testcase_15 AC 133 ms
15,768 KB
testcase_16 AC 208 ms
19,548 KB
testcase_17 AC 1,797 ms
100,612 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