結果

問題 No.1469 programing
ユーザー JUNYA-727JUNYA-727
提出日時 2021-04-12 00:52:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 422 ms / 3,000 ms
コード長 115 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 293,100 KB
最終ジャッジ日時 2024-06-27 22:26:27
合計ジャッジ時間 2,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 38 ms
51,492 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 38 ms
51,328 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 42 ms
58,624 KB
testcase_06 AC 40 ms
57,088 KB
testcase_07 AC 42 ms
58,240 KB
testcase_08 AC 49 ms
70,528 KB
testcase_09 AC 53 ms
74,624 KB
testcase_10 AC 53 ms
73,344 KB
testcase_11 AC 66 ms
89,600 KB
testcase_12 AC 58 ms
80,768 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 86 ms
98,048 KB
testcase_15 AC 70 ms
86,024 KB
testcase_16 AC 82 ms
90,596 KB
testcase_17 AC 422 ms
293,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=str(input())
word=[]
a=str(0)
for i in s:
  if a!=i:
    a=i
    word.append(i)

words=''.join(word)
print(words)
0